astro_avtourist/frontend/src/pages/index.astro

12 lines
261 B
Text
Raw Normal View History

2026-03-31 22:53:39 +05:00
---
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>