Fix build errors and named steps in build
Some checks failed
Build and deploy website / build (push) Failing after 1m11s

This commit is contained in:
Martin Berg Alstad
2024-09-27 22:34:06 +02:00
parent 5cd6709ec8
commit 91f91b411d
5 changed files with 115 additions and 112 deletions

View File

@ -7,5 +7,5 @@ import Layout from "../layouts/Layout.astro"
---
<Layout title="Kontakt meg">
<ContactMeForm client:load />
<!--<ContactMeForm client:load />-->
</Layout>

View File

@ -1,3 +1,10 @@
---
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>