Basic stuff

This commit is contained in:
MotorTruck1221
2025-03-18 00:52:29 -06:00
parent 19e6beaec4
commit a57072d6f8
8 changed files with 145 additions and 4 deletions
+9 -4
View File
@@ -1,17 +1,22 @@
---
import "@styles/themes/default.css";
import "@styles/global.css";
import { ClientRouter } from "astro:transitions";
import SettingsLoader from "@components/SettingsLoader.astro";
---
<!doctype html>
<html lang="en">
<head>
<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>
<title>Radius</title>
<ClientRouter fallback="animate" />
</head>
<body class="h-full">
<div class="h-full w-full fixed">
<body class="h-full w-full bg-(--background)">
<div class="h-full w-full fixed bg-(--background)">
<slot />
</div>
</body>