11 lines
291 B
Plaintext
11 lines
291 B
Plaintext
---
|
|
import Layout from "../../layouts/Layout.astro"
|
|
import HardwarePage from "../../components/HardwarePage.svelte"
|
|
import "../../styles/global.css"
|
|
---
|
|
|
|
<Layout title="Hardware" class="mx-auto max-w-[750px]">
|
|
<h1 class="text-center">Hardware</h1>
|
|
<HardwarePage client:load />
|
|
</Layout>
|