Update general style

- Smaller width of page
- Center navbar
- Fonts
- Catppuccin Mocha colours
- TODO.md
- Show all uses at the same time
- and more...
This commit is contained in:
2025-02-15 18:01:17 +01:00
parent cb00252364
commit 023c8b7c85
20 changed files with 168 additions and 100 deletions

View File

@ -1,6 +1,6 @@
---
import Layout from "@/layouts/Layout.astro"
import UsesPage from "@/components/UsesPage.svelte"
import UsesPage from "@/components/UsesPage.astro"
import "@/styles/global.css"
import { getCollection } from "astro:content"
@ -8,5 +8,5 @@ const uses = await getCollection("uses")
---
<Layout title="Hardware" class="mx-auto max-w-[750px]">
<UsesPage client:load uses={uses} />
<UsesPage uses={uses} />
</Layout>

View File

@ -1,6 +1,6 @@
---
import Layout from "../layouts/Layout.astro"
import Greeting from "../components/Greeting.astro"
import Layout from "@/layouts/Layout.astro"
import Greeting from "@/components/Greeting.astro"
// https://slashpages.net/
---

View File

@ -1,6 +1,6 @@
---
import Layout from "@/layouts/Layout.astro"
import UsesPage from "@/components/UsesPage.svelte"
import UsesPage from "@/components/UsesPage.astro"
import "@/styles/global.css"
import { getCollection } from "astro:content"
@ -8,5 +8,5 @@ const uses = await getCollection("uses")
---
<Layout title="Hardware" class="mx-auto max-w-[750px]">
<UsesPage client:load uses={uses} />
<UsesPage uses={uses} />
</Layout>