blogs/sites/reflections/src/layouts/DefaultLayout.astro
Neeldhara Misra 58d8b661a8
Some checks are pending
Build / build (push) Waiting to run
Restructure blogs as Astro monorepo
2026-06-13 21:15:16 +02:00

19 lines
529 B
Text

---
import BaseHead from '@/components/BaseHead.astro';
import Footer from '@/components/sections/footer';
import Navbar from '@/components/sections/navbar';
const { title, description } = Astro.props;
---
<html lang="en">
<head>
<BaseHead title={title} description={description} />
</head>
<body class={`h-screen antialiased flex flex-col`}
>
<Navbar currentPage={Astro.url.pathname} client:only='react' />
<main class="flex-1"><slot /></main>
<Footer />
</body>
</html>