2024-09-25 22:20:47 +02:00
|
|
|
---
|
2024-09-27 22:13:39 +02:00
|
|
|
import Layout from "../../layouts/Layout.astro"
|
|
|
|
import HardwarePage from "../../components/HardwarePage.svelte"
|
|
|
|
import "../../styles/global.css"
|
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]">
|
|
|
|
<h1 class="text-center">Hardware</h1>
|
|
|
|
<HardwarePage client:load />
|
|
|
|
</Layout>
|