Add settings pages & header

This commit is contained in:
MotorTruck1221
2025-04-05 20:04:58 -06:00
parent 584ec7e215
commit 415af11053
8 changed files with 65 additions and 5 deletions
+16
View File
@@ -0,0 +1,16 @@
---
import Layout from "@layouts/Layout.astro";
import SettingsNav from "@components/SettingsNav.astro";
import type { SettingsProps as Props } from "@utils/types.ts";
//I love prop drilling
const { active } = Astro.props;
---
<Layout>
<div class="h-full w-full flex font-inter">
<div class="w-1/4 bg-(--background) flex mt-14">
<SettingsNav active={active} />
</div>
<slot />
</div>
</Layout>