Skip to content

Commit 5e3c9e2

Browse files
committed
refactor!: Update 'About Us' section
Used `AboutSection.astro` and data from `home-sections.json` to update 'About Section' implementation
1 parent b703775 commit 5e3c9e2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/pages/index.astro

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
---
2-
import AboutUs from "../components/AboutUs.astro";
2+
import AboutSection from "../components/AboutSection.astro";
33
import Faq from "../components/Faq.astro";
44
import Features from "../components/Features.astro";
55
import Hero from "../components/Hero.astro";
66
import Layout from "../layouts/Layout.astro";
7+
8+
import {aboutUs} from '../assets/home-sections.json'
79
---
810

911
<Layout title="Inicio">
1012
<!-- Hero Section -->
1113
<Hero />
1214
<!-- About Us Section -->
13-
<AboutUs />
15+
<AboutSection {...aboutUs}/>
1416
<!-- Features Section -->
1517
<Features />
1618
<!-- FAQ Section -->

0 commit comments

Comments
 (0)