personal-website/src/layouts/MainLayout.astro
Cyril Šebek fd03b7b9cf
almost finished navbar
TODO: modify dropdown menus
2024-04-07 17:23:34 +02:00

29 lines
1.2 KiB
Plaintext

---
const { title, description, lang, themeOverride } = Astro.props;
import { ViewTransitions } from 'astro:transitions';
import Navbar from "../components/Navbar.astro";
import "../style/index.css";
import "../style/globals.css";
---
<!doctype html>
<html lang={lang} data-theme={themeOverride ? themeOverride : "theme_auto"} class="overflow-hidden">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content={description} />
<link rel="shortcut icon" href="/favicon.svg">
<title>{title}</title>
<ViewTransitions />
</head>
<body class="bg-bkg" >
<script transition:persist is:raw is:inline>
document.addEventListener('astro:after-swap', () => {document.documentElement.setAttribute("data-theme", localStorage.getItem("data-theme") || document.documentElement.getAttribute("data-theme"));});
</script>
<Navbar transition:persist/>
<div class="bg-bkg h-dvh w-full overflow-y-scroll snap-mandatory snap-y scroll-smooth" transition:animate="slide">
<slot />
</div>
</body>
</html>