kjelsrud.dev/src/components/BlogContainer.astro
Sindre Kjelsrud 8a3970e783
💄 update blogpost ui
Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
2024-03-17 14:58:49 +01:00

21 lines
623 B
Text

---
import BaseHead from '../components/BaseHead.astro';
import BlogHeader from '../components/BlogHeader.astro';
import Footer from '../components/Footer.astro';
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
---
<!DOCTYPE html>
<html lang="en">
<head>
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
</head>
<body>
<section class="mx-auto max-w-3xl px-4 sm:px-6 xl:max-w-2xl xl:px-0">
<div class="flex flex-col h-screen">
<BlogHeader title={SITE_TITLE} />
<slot class="flex-1"/>
</div>
</section>
</body>
</html>