Files
martials.no/src/pages/uses.astro

13 lines
314 B
Plaintext
Raw Normal View History

2024-09-25 22:20:47 +02:00
---
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")
2024-09-25 22:20:47 +02:00
---
2024-09-27 22:13:39 +02:00
<Layout title="Hardware" class="mx-auto max-w-[750px]">
<UsesPage uses={uses} />
</Layout>