personal site
0
fork

Configure Feed

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

feat: some initial styling and content

serenity 35f7c2cf d9afbb08

+14 -7
+2 -2
src/components/Nav/NavBar.astro
··· 4 4 5 5 <div class="flex max-w-screen flex-col items-center"> 6 6 <nav> 7 - <div class="flex w-[66vw] justify-between py-6"> 7 + <div class="flex w-[66vw] justify-between py-6 px-4"> 8 8 <a 9 9 href="/" 10 10 class="flex items-center gap-2 font-serif text-lg font-bold" 11 11 > 12 12 <LucideLineSquiggle /> 13 - <p>Serenity, the Goldweaver</p> 13 + <p>The Goldweaver</p> 14 14 </a> 15 15 <div class="flex gap-2 font-serif"> 16 16 <a href="/blog">Blog</a>
+3 -1
src/layouts/BaseLayout.astro
··· 6 6 7 7 <RootLayout title={title}> 8 8 <NavBar /> 9 - <slot /> 9 + <div class="flex max-w-screen flex-col items-center"> 10 + <slot /> 11 + </div> 10 12 </RootLayout>
+1 -3
src/layouts/RootLayout.astro
··· 16 16 <Font cssVariable="--font-amiri" /> 17 17 <title>{title}</title> 18 18 </head> 19 - <body 20 - class="bg-glw-base text-glw-text flex w-screen flex-col items-center justify-center" 21 - > 19 + <body class="bg-glw-base text-glw-text flex w-screen flex-col font-serif"> 22 20 <slot /> 23 21 </body> 24 22 </html>
+8 -1
src/pages/index.astro
··· 4 4 --- 5 5 6 6 <BaseLayout title="Goldweaver's Abode"> 7 - <h1>Astro</h1> 7 + <div 8 + class="border-glw-overlay0 flex min-h-screen w-[66vw] border-r border-l border-dashed px-8 py-4" 9 + > 10 + <div> 11 + <p class="font-serif text-xl font-black">The Software Goldweaver</p> 12 + <p>Serenity</p> 13 + </div> 14 + </div> 8 15 </BaseLayout>