Files
ecaec7c8-a0cf-498b-9040-43a…/src/pages/HomePage.tsx
2026-06-10 23:01:52 +00:00

25 lines
787 B
TypeScript

// 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 HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
import OfferingsSection from './HomePage/sections/Offerings';
import TestimonialsSection from './HomePage/sections/Testimonials';
import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
export default function HomePage(): React.JSX.Element {
return (
<>
<HeroSection />
<AboutSection />
<OfferingsSection />
<TestimonialsSection />
<FaqSection />
<ContactSection />
</>
);
}