31 lines
662 B
Text
31 lines
662 B
Text
|
|
---
|
||
|
|
import Navbar from '../components/Navbar.astro';
|
||
|
|
import Footer from '../components/Footer.astro';
|
||
|
|
import ThemeSwitcher from '../components/ThemeSwitcher.astro';
|
||
|
|
import '../styles/global.css';
|
||
|
|
|
||
|
|
interface Props {
|
||
|
|
title?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
const { title = 'Compagnie AspiRêves' } = Astro.props;
|
||
|
|
---
|
||
|
|
|
||
|
|
<!doctype html>
|
||
|
|
<html lang="fr">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<title>{title}</title>
|
||
|
|
</head>
|
||
|
|
<body class="bg-cloud min-h-screen flex flex-col">
|
||
|
|
<Navbar />
|
||
|
|
<main class="flex-grow">
|
||
|
|
<slot />
|
||
|
|
</main>
|
||
|
|
<Footer />
|
||
|
|
<ThemeSwitcher />
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|