tangled
alpha
login
or
join now
vielle.dev
/
site
0
fork
atom
Personal Site
0
fork
atom
overview
issues
pulls
pipelines
Move NowPlaying into seperate component
vielle.dev
7 months ago
53297560
edf18c08
verified
This commit was signed with the committer's
known signature
.
vielle.dev
SSH Key Fingerprint:
SHA256:/4bvxqoEh9iMdjAPgcgAgXKZZQTROL3ULiPt6nH9RSs=
+7
-1
2 changed files
expand all
collapse all
unified
split
src
components
home
NowPlaying.astro
pages
index.astro
+5
src/components/home/NowPlaying.astro
···
0
0
0
0
0
···
1
+
---
2
+
3
+
---
4
+
5
+
<section class="playing">Now Playing</section>
+2
-1
src/pages/index.astro
···
1
---
2
import Base from "/components/Base.astro";
3
import Landing from "/components/home/Landing.astro";
0
4
---
5
6
<Base>
···
8
<!-- landing -->
9
<Landing />
10
<!-- now playing -->
11
-
<section class="playing">playing</section>
12
<!-- feeds -->
13
<section class="feeds">feeds</section>
14
<!-- blog -->
···
1
---
2
import Base from "/components/Base.astro";
3
import Landing from "/components/home/Landing.astro";
4
+
import NowPlaying from "/components/home/NowPlaying.astro"
5
---
6
7
<Base>
···
9
<!-- landing -->
10
<Landing />
11
<!-- now playing -->
12
+
<NowPlaying />
13
<!-- feeds -->
14
<section class="feeds">feeds</section>
15
<!-- blog -->