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