Merge version_3_1780570461427 into main #2

Merged
bender merged 1 commits from version_3_1780570461427 into main 2026-06-04 10:55:27 +00:00

View File

@@ -1,7 +1,3 @@
// AUTO-GENERATED shell by per-section-migrate.
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
// files directly; this shell only fixes render order.
import React from 'react';
import AboutSection from './HomePage/sections/About';
import ServicesSection from './HomePage/sections/Services';
@@ -10,11 +6,12 @@ import MetricsSection from './HomePage/sections/Metrics';
import TestimonialsSection from './HomePage/sections/Testimonials';
import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
import HeroSection from './HomePage/sections/Hero';
import HeroSection from './HomePage/sections/Hero';export default function HomePage(): React.JSX.Element {
export default function HomePage(): React.JSX.Element {
return (
<>
<HeroSection />
<AboutSection />
<ServicesSection />
<PortfolioSection />
@@ -22,7 +19,6 @@ import HeroSection from './HomePage/sections/Hero';export default function HomeP
<TestimonialsSection />
<FaqSection />
<ContactSection />
<HeroSection />
</>
);
}
}