summaryrefslogtreecommitdiff
path: root/src/layouts/Base.astro
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-03-12 20:08:01 -0400
committerSeth Flynn <[email protected]>2025-03-12 20:26:38 -0400
commit898f1b95c7200a321eb686738e06283fc224959a (patch)
tree9249459856535e29d17d563a608b09ccf2344d02 /src/layouts/Base.astro
parente418edcd965f3a74522adc37b6cc3db11d0ce8f7 (diff)
feat: use tailwind and daisyui
Diffstat (limited to 'src/layouts/Base.astro')
-rw-r--r--src/layouts/Base.astro10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro
index 2aa3d9e..ab5948e 100644
--- a/src/layouts/Base.astro
+++ b/src/layouts/Base.astro
@@ -9,13 +9,9 @@ const { title, description } = Astro.props.frontmatter || Astro.props;
<!doctype html>
<html lang="en">
<Head title={title} description={description} />
- <body>
- <header>
- <Nav />
- </header>
- <div class="main-content">
- <slot />
- </div>
+ <body class="prose lg:prose-xl mx-auto max-w-3/4 lg:max-w-1/2">
+ <Nav />
+ <slot />
<Footer />
</body>
</html>