37 lines
1018 B
TypeScript
37 lines
1018 B
TypeScript
// AUTO-GENERATED shell by per-section-migrate.
|
|
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
|
// files directly. Non-block content (wrappers, non-inlinable sections) is
|
|
// preserved inline; extracted section blocks become <XSection/> refs.
|
|
|
|
import React from 'react';
|
|
import HeroSection from './HomePage/sections/Hero';
|
|
import FeaturesSection from './HomePage/sections/Features';
|
|
import BenefitsSection from './HomePage/sections/Benefits';
|
|
import MetricsSection from './HomePage/sections/Metrics';
|
|
import SocialSection from './HomePage/sections/Social';
|
|
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 />
|
|
|
|
<FeaturesSection />
|
|
|
|
<BenefitsSection />
|
|
|
|
<MetricsSection />
|
|
|
|
<SocialSection />
|
|
|
|
<TestimonialsSection />
|
|
|
|
<FaqSection />
|
|
|
|
<ContactSection />
|
|
</>
|
|
);
|
|
}
|