generated from autonomic-cooperative/astro-payload-template
17 lines
379 B
Plaintext
17 lines
379 B
Plaintext
---
|
|
import BaseLayout from "./BaseLayout.astro";
|
|
import Header from "@/components/Header.astro";
|
|
import Footer from "@/components/Footer.astro";
|
|
|
|
const { title } = Astro.props;
|
|
---
|
|
|
|
<BaseLayout title={title}>
|
|
<Header/>
|
|
<div class="min-h-screen flex flex-col">
|
|
<main class="flex-grow">
|
|
<slot/>
|
|
</main>
|
|
<Footer/>
|
|
</div>
|
|
</BaseLayout> |