martials.no/src/pages/index.astro

9 lines
158 B
Plaintext
Raw Normal View History

2024-09-08 13:14:02 +02:00
---
2024-09-25 22:20:47 +02:00
import Layout from "../layouts/Layout.astro"
import Greeting from "../components/Greeting.astro"
2024-09-08 13:14:02 +02:00
---
2024-09-25 22:20:47 +02:00
<Layout title="Velkommen">
<Greeting />
2024-09-08 13:14:02 +02:00
</Layout>