Files
ff6ccf88-52b2-41b2-a2cd-1db…/src/pages/HomePage.tsx

38 lines
1.0 KiB
TypeScript

// AUTO-GENERATED shell by per-section-migrate.
// Section bodies live in the sibling sections/ folder (one file per section).
// Edit those section files directly. Non-block content (wrappers,
// non-inlinable sections) is preserved inline; extracted section blocks
// become component refs.
import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import GuaranteeSection from './HomePage/sections/Guarantee';
import ServicesSection from './HomePage/sections/Services';
import PackagesSection from './HomePage/sections/Packages';
import ComparisonSection from './HomePage/sections/Comparison';
import ProcessSection from './HomePage/sections/Process';
import StatsSection from './HomePage/sections/Stats';
import ContactSection from './HomePage/sections/Contact';
export default function HomePage(): React.JSX.Element {
return (
<>
<HeroSection />
<GuaranteeSection />
<ServicesSection />
<PackagesSection />
<ComparisonSection />
<ProcessSection />
<StatsSection />
<ContactSection />
</>
);
}