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

44 lines
1.7 KiB
Text
Raw Normal View History

---
// Import the necessary components
import MainLayout from "../layouts/MainLayout.astro";
import HeroSection from "../components/sections/landing/HeroSection.astro";
import HeroSectionAlt from "../components/sections/landing/HeroSectionAlt.astro";
import ClientsSection from "../components/sections/landing/ClientsSection.astro";
import FeaturesGeneral from "../components/sections/features/FeaturesGeneral.astro";
import FeaturesNavs from "../components/sections/features/FeaturesNavs.astro";
import TestimonialsSection from "../components/sections/testimonials/TestimonialsSection.astro";
import PricingSection from "../components/sections/pricing/PricingSection.astro";
import FAQ from "../components/sections/FAQ.astro";
---
<MainLayout>
<HeroSection
title=`Equip Your Projects with <span
class="text-yellow-500 dark:text-yellow-400">ScrewFast</span>`
subTitle="Top-quality hardware tools and expert construction services for every project need."
primaryBtn="Start Exploring"
primaryBtnURL="/products"
secondaryBtn="Contact Sales Team"
secondaryBtnURL="/contact"
withReview={true}
rating=`<span class="font-bold">4.8</span> / 5`
starCount={4}
reviews=`From Over <span class="font-bold">12.8k</span> Reviews`
/>
<ClientsSection
title="Trusted by Industry Leaders"
subTitle="Experience the reliability chosen by industry giants."
/>
<FeaturesGeneral />
<FeaturesNavs />
<TestimonialsSection />
<PricingSection />
<FAQ />
<HeroSectionAlt
title="Let's Build Together"
subTitle="ScrewFast is an open-source template, meticulously crafted with Astro, Tailwind CSS, and Preline UI frameworks."
url="https://github.com/mearashadowfax/ScrewFast"
/>
</MainLayout>