achat-maison-albi-fr/src/pages/index.astro

25 lines
772 B
Text
Raw Normal View History

---
// Import section components
import MainLayout from "../layouts/MainLayout.astro";
import HeroSection from "../components/HeroSection.astro";
import HeroSection2 from "../components/HeroSection2.astro";
import ClientsSection from "../components/ClientsSection.astro";
import FeaturesGeneral from "../components/FeaturesGeneral.astro";
import FeaturesNavs from "../components/FeaturesNavs.astro";
import TestimonialsSection from "../components/TestimonialsSection.astro";
import PricingSection from "../components/PricingSection.astro";
import FAQ from "../components/FAQ.astro";
---
<MainLayout>
<HeroSection />
<ClientsSection />
<FeaturesGeneral />
<FeaturesNavs />
<TestimonialsSection />
<PricingSection />
<FAQ />
<HeroSection2 />
</MainLayout>