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