25 lines
787 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|