mirror of
https://github.com/mikkelsvartveit/astro-personal-website.git
synced 2025-12-22 11:12:38 +00:00
23 lines
400 B
Text
23 lines
400 B
Text
---
|
|
import Navbar from "@components/Navbar.svelte";
|
|
import HeadContent from "@components/HeadContent.astro";
|
|
---
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<slot name="head">
|
|
<HeadContent />
|
|
</slot>
|
|
</head>
|
|
|
|
<body class="overflow-y-scroll bg-gray-50">
|
|
<Navbar
|
|
client:load
|
|
currentPath={Astro.url.pathname}
|
|
/>
|
|
|
|
<main class="pb-6">
|
|
<slot />
|
|
</main>
|
|
</body>
|
|
</html>
|