website/src/pages/index.astro

11 lines
218 B
Text
Raw Normal View History

2022-12-04 14:46:22 +01:00
---
2022-12-04 15:30:42 +01:00
import Layout from "../layouts/Layout.astro";
import Hero from "../components/widgets/index/Hero.astro";
2022-12-06 12:49:18 +01:00
import Navbar from "../components/widgets/Navbar.astro";
2022-12-04 14:46:22 +01:00
---
2022-12-08 16:52:33 +01:00
<Layout>
2022-12-06 12:49:18 +01:00
<Navbar />
2022-12-06 13:16:18 +01:00
<Hero />
2022-12-04 14:46:22 +01:00
</Layout>