Add more components to index.astro

The index.astro page has been updated with the addition of several new components to provide more reusable structures. These components include MainLayout, Navbar, HeroSection, Clients, FeaturesGeneral, FeaturesNavs, Testimonials, Pricing, and FAQ, to form the structure of the landing page.
This commit is contained in:
Emil Gulamov 2024-02-11 22:47:13 +04:00
parent f877617735
commit 0cf3fe8299

View file

@ -1,16 +1,22 @@
--- ---
import MainLayout from "../layouts/MainLayout.astro";
import Navbar from "../components/Navbar.astro";
import HeroSection from "../components/HeroSection.astro";
import Clients from "../components/Clients.astro";
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";
---
--- <MainLayout>
<Navbar />
<html lang="en"> <HeroSection />
<head> <Clients />
<meta charset="utf-8" /> <FeaturesGeneral />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <FeaturesNavs />
<meta name="viewport" content="width=device-width" /> <Testimonials />
<meta name="generator" content={Astro.generator} /> <Pricing />
<title>Astro</title> <FAQ />
</head> </MainLayout>
<body>
<h1>Astro</h1>
</body>
</html>