martials.no/src/pages/en/hardware.astro
Martin Berg Alstad c3b698956b
All checks were successful
Build and deploy website / build (push) Successful in 1m23s
Build and deploy website / deploy (push) Successful in 1s
Fix build error
Signed-off-by: Martin Berg Alstad <git@martials.no>
2024-10-06 14:53:54 +02:00

13 lines
355 B
Plaintext

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