personal site
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: small footer component

serenity 4ed3208e 35f7c2cf

+13
+10
src/components/Nav/Footer.astro
··· 1 + --- 2 + import LucideLineSquiggle from "../Icons/LucideLineSquiggle.astro"; 3 + --- 4 + 5 + <div class="flex max-w-screen flex-col items-center"> 6 + <div class="text-glw-overlay0 w-screen border-t border-dashed"></div> 7 + <div class="flex w-[66vw] justify-between px-4 py-6"> 8 + <p>May this journey lead us starward.</p> 9 + </div> 10 + </div>
+3
src/layouts/BaseLayout.astro
··· 1 1 --- 2 2 import NavBar from "../components/Nav/NavBar.astro"; 3 3 import RootLayout from "../layouts/RootLayout.astro"; 4 + import Footer from "../components/Nav/Footer.astro"; 5 + 4 6 const { title } = Astro.props; 5 7 --- 6 8 ··· 9 11 <div class="flex max-w-screen flex-col items-center"> 10 12 <slot /> 11 13 </div> 14 + <Footer /> 12 15 </RootLayout>