achat-maison-albi-fr/src/pages/index.astro
Emil Gulamov 03f0d73c45 Refactor code and enhance comments in multiple files
The changes made include code refactoring and reformatting in several files for better readability, and to adhere to best practices. Detailed and intuitive comments were added to the code, improving clarity and understanding of the codebase. There were also some class adjustments and minor changes in several files ranging from reordering class listings to updating element selections. Import statements were also modified for clarity. Accordion functionality was removed, potentially indicating a pending replacement or enhancement.
2024-02-18 07:40:53 +04:00

26 lines
1.1 KiB
Text

---
// Import the necessary components
import MainLayout from "../layouts/MainLayout.astro";
import HeroSection from "../components/HeroSection.astro";
import HeroSectionAlt from "../components/HeroSectionAlt.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";
---
<!--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>