2024-09-25 22:20:47 +02:00
|
|
|
---
|
2024-10-06 14:43:06 +02:00
|
|
|
import Layout from "@/layouts/Layout.astro"
|
2025-02-15 18:01:17 +01:00
|
|
|
import UsesPage from "@/components/UsesPage.astro"
|
2024-10-06 14:43:06 +02:00
|
|
|
import "@/styles/global.css"
|
2024-10-06 14:53:54 +02:00
|
|
|
import { getCollection } from "astro:content"
|
|
|
|
|
2025-02-15 13:29:01 +01:00
|
|
|
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]">
|
2025-02-15 18:01:17 +01:00
|
|
|
<UsesPage uses={uses} />
|
2024-10-06 14:53:54 +02:00
|
|
|
</Layout>
|