12 lines
261 B
Text
12 lines
261 B
Text
|
|
---
|
||
|
|
import Layout from '@layouts/Layout.astro';
|
||
|
|
import Hero from '@components/home/Hero.astro';
|
||
|
|
import Services from "@components/home/Services.astro";
|
||
|
|
import WhyUs from "@components/home/WhyUs.astro";
|
||
|
|
---
|
||
|
|
|
||
|
|
<Layout>
|
||
|
|
<Hero />
|
||
|
|
<Services />
|
||
|
|
<WhyUs />
|
||
|
|
</Layout>
|