This commit is contained in:
2025-06-23 23:36:51 +02:00
parent eb036dece5
commit a31c99453b
17 changed files with 8035 additions and 17 deletions

View File

@@ -3,6 +3,7 @@ import "../styles/global.css";
import Head from "./Head.astro";
import Navigation from "../components/Navigation.astro";
import { getLanguageFromPath } from "../lib/i18n";
import ReloadPrompt from '../components/ReloadPrompt.astro';
const { title = "Just a title", description = "Adescription" } = Astro.props;
@@ -18,6 +19,8 @@ const currentLang = getLanguageFromPath(Astro.url.pathname);
</header>
<main class="container max-w-4xl mx-auto p-4">
<slot />
<ReloadPrompt />
</main>
</body>
</html>