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-19 17:41:42 +04:00
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";
2024-02-10 03:49:51 +04:00
---
2024-02-18 07:40:53 +04:00
<!--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."
>
2024-02-11 22:47:13 +04:00
<HeroSection />
2024-02-12 03:50:17 +04:00
<ClientsSection />
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-18 07:40:53 +04:00
<HeroSectionAlt />
2024-02-11 22:47:13 +04:00
</MainLayout>