mirror of
https://github.com/xHyroM/website.git
synced 2024-11-14 19:48:06 +01:00
10 lines
218 B
Text
10 lines
218 B
Text
---
|
|
import Layout from "../layouts/Layout.astro";
|
|
import Hero from "../components/widgets/index/Hero.astro";
|
|
import Navbar from "../components/widgets/Navbar.astro";
|
|
---
|
|
|
|
<Layout>
|
|
<Navbar />
|
|
<Hero />
|
|
</Layout>
|