2024-02-10 03:49:51 +04:00
|
|
|
---
|
2024-02-11 22:47:13 +04:00
|
|
|
import MainLayout from "../layouts/MainLayout.astro";
|
|
|
|
|
import HeroSection from "../components/HeroSection.astro";
|
2024-02-13 05:50:53 +04:00
|
|
|
import HeroSection2 from "../components/HeroSection2.astro";
|
2024-02-12 03:50:17 +04:00
|
|
|
import ClientsSection from "../components/ClientsSection.astro";
|
2024-02-11 22:47:13 +04:00
|
|
|
import FeaturesGeneral from "../components/FeaturesGeneral.astro";
|
|
|
|
|
import FeaturesNavs from "../components/FeaturesNavs.astro";
|
2024-02-12 04:48:22 +04:00
|
|
|
import TestimonialsSection from "../components/TestimonialsSection.astro";
|
|
|
|
|
import PricingSection from "../components/PricingSection.astro";
|
2024-02-11 22:47:13 +04:00
|
|
|
import FAQ from "../components/FAQ.astro";
|
2024-02-10 03:49:51 +04:00
|
|
|
---
|
|
|
|
|
|
2024-02-11 22:47:13 +04:00
|
|
|
<MainLayout>
|
2024-02-13 05:50:53 +04:00
|
|
|
|
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-13 05:50:53 +04:00
|
|
|
<HeroSection2 />
|
2024-02-11 22:47:13 +04:00
|
|
|
</MainLayout>
|