Files
7c3f3ebc-ad30-4196-bf58-a8b…/src/pages/HomePage.tsx
2026-06-14 10:03:31 +00:00

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 />
</>
);
}