2024-02-10 03:49:51 +04:00
|
|
|
---
|
2024-02-18 07:40:53 +04:00
|
|
|
// Import the necessary components
|
2024-02-11 22:47:13 +04:00
|
|
|
import MainLayout from "../layouts/MainLayout.astro";
|
2024-02-20 07:47:23 +04:00
|
|
|
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";
|
2024-02-19 17:41:42 +04:00
|
|
|
import FAQ from "../components/sections/FAQ.astro";
|
2024-02-10 03:49:51 +04:00
|
|
|
---
|
|
|
|
|
|
2024-02-20 07:47:23 +04:00
|
|
|
<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."
|
|
|
|
|
/>
|
2024-02-11 22:47:13 +04:00
|
|
|
<FeaturesGeneral />
|
|
|
|
|
<FeaturesNavs />
|
2024-02-12 04:48:22 +04:00
|
|
|
<TestimonialsSection />
|
|
|
|
|
<PricingSection />
|
2024-02-11 22:47:13 +04:00
|
|
|
<FAQ />
|
2024-02-20 07:47:23 +04:00
|
|
|
<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"
|
|
|
|
|
/>
|
2024-02-11 22:47:13 +04:00
|
|
|
</MainLayout>
|