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

27 lines
1.1 KiB
Text
Raw Normal View History

---
// Import the necessary components
import MainLayout from "../layouts/MainLayout.astro";
import HeroSection from "../components/sections/HeroSection.astro";
import HeroSectionAlt from "../components/sections/HeroSectionAlt.astro";
import ClientsSection from "../components/sections/ClientsSection.astro";
import FeaturesGeneral from "../components/sections/FeaturesGeneral.astro";
import FeaturesNavs from "../components/sections/FeaturesNavs.astro";
import TestimonialsSection from "../components/sections/TestimonialsSection.astro";
import PricingSection from "../components/sections/PricingSection.astro";
import FAQ from "../components/sections/FAQ.astro";
---
<!--Utilizing MainLayout for the outer layout of the page, and defining meta for SEO purposes-->
<MainLayout
meta="ScrewFast offers top-tier hardware tools and expert construction services to meet all your project needs. Start exploring and contact our sales team for superior quality and reliability."
>
<HeroSection />
<ClientsSection />
<FeaturesGeneral />
<FeaturesNavs />
<TestimonialsSection />
<PricingSection />
<FAQ />
<HeroSectionAlt />
</MainLayout>