nyvora.app/src/layouts/Layout.astro

29 lines
870 B
Text

---
import "@styles/themes/default.css";
import "@styles/global.css";
import "@fontsource/inter";
import { ClientRouter } from "astro:transitions";
import SettingsLoader from "@components/SettingsLoader.astro";
import Header from "@components/Header.astro";
---
<!doctype html>
<html lang="en">
<head>
<SettingsLoader transition:persist />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>Radius</title>
<ClientRouter fallback="animate" />
</head>
<body class="h-full w-full bg-(--background) font-override">
<Header />
<div class="h-full w-full fixed bg-(--background) text-(--foreground)">
<slot />
</div>
</body>
</html>
<style>
</style>