Migrate all routes

This commit is contained in:
aronmal 2023-11-09 14:55:27 +01:00
parent 036a2d1e4a
commit ea5a815c2c
Signed by: aronmal
GPG key ID: 816B7707426FC612
13 changed files with 621 additions and 480 deletions

View file

@ -1,9 +1,13 @@
export default function Contact() {
return (
<section>
<h1>Contact</h1>
<p>EMail: <a href={"mailto:contact@moonleay.net"}>contact@moonleay.net</a></p>
<p>Discord: <a>@moonleay</a></p>
</section>
)
}
---
import Layout from "@layouts/Layout.astro";
---
<Layout>
<section>
<h1>Contact</h1>
<p>
EMail: <a href="mailto:contact@moonleay.net">contact@moonleay.net</a>
</p>
<p>Discord: <a>@moonleay</a></p>
</section>
</Layout>