Personal Site

Add feed component

vielle.dev 0ef35874 7250ffe2

verified
+9 -1
+7
src/components/home/feeds/Feeds.astro
···
··· 1 + --- 2 + 3 + --- 4 + 5 + <section class="feeds"> 6 + 7 + </section>
+2 -1
src/pages/index.astro
··· 1 --- 2 import Base from "/components/Base.astro"; 3 import Landing from "/components/home/Landing.astro"; 4 import NowPlaying from "/components/home/playing/NowPlaying.astro"; 5 --- ··· 11 <!-- now playing --> 12 <NowPlaying /> 13 <!-- feeds --> 14 - <section class="feeds">feeds</section> 15 <!-- blog --> 16 <section class="blog">blog</section> 17 </main>
··· 1 --- 2 import Base from "/components/Base.astro"; 3 + import Feeds from "/components/home/feeds/Feeds.astro"; 4 import Landing from "/components/home/Landing.astro"; 5 import NowPlaying from "/components/home/playing/NowPlaying.astro"; 6 --- ··· 12 <!-- now playing --> 13 <NowPlaying /> 14 <!-- feeds --> 15 + <Feeds /> 16 <!-- blog --> 17 <section class="blog">blog</section> 18 </main>