- Smaller width of page - Center navbar - Fonts - Catppuccin Mocha colours - TODO.md - Show all uses at the same time - and more...
13 lines
314 B
Plaintext
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>
|