⬆ Updated all packages to latest stable, changed hardware url to /uses
Some checks failed
Build and deploy website / build (push) Failing after 42s

This commit is contained in:
2025-01-19 20:02:40 +01:00
parent 2fc18f642d
commit 89a349b4fd
7 changed files with 1030 additions and 807 deletions

12
src/pages/en/uses.astro Normal file
View File

@ -0,0 +1,12 @@
---
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 server:defer hardware={hardware} />
</Layout>