We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b703775 commit 5e3c9e2Copy full SHA for 5e3c9e2
src/pages/index.astro
@@ -1,16 +1,18 @@
1
---
2
-import AboutUs from "../components/AboutUs.astro";
+import AboutSection from "../components/AboutSection.astro";
3
import Faq from "../components/Faq.astro";
4
import Features from "../components/Features.astro";
5
import Hero from "../components/Hero.astro";
6
import Layout from "../layouts/Layout.astro";
7
+
8
+import {aboutUs} from '../assets/home-sections.json'
9
10
11
<Layout title="Inicio">
12
<!-- Hero Section -->
13
<Hero />
14
<!-- About Us Section -->
- <AboutUs />
15
+ <AboutSection {...aboutUs}/>
16
<!-- Features Section -->
17
<Features />
18
<!-- FAQ Section -->
0 commit comments