Files
martials.no/src/pages/uses.astro
Martin Berg Alstad 023c8b7c85 Update general style
- Smaller width of page
- Center navbar
- Fonts
- Catppuccin Mocha colours
- TODO.md
- Show all uses at the same time
- and more...
2025-02-15 18:01:17 +01:00

13 lines
314 B
Plaintext

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