37 lines
997 B
TypeScript
37 lines
997 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 AboutSection from './HomePage/sections/About';
|
|
import ServicesSection from './HomePage/sections/Services';
|
|
import ProductSection from './HomePage/sections/Product';
|
|
import PricingSection from './HomePage/sections/Pricing';
|
|
import ReviewsSection from './HomePage/sections/Reviews';
|
|
import FaqSection from './HomePage/sections/Faq';
|
|
import ContactSection from './HomePage/sections/Contact';
|
|
|
|
export default function HomePage(): React.JSX.Element {
|
|
return (
|
|
<>
|
|
<HeroSection />
|
|
|
|
<AboutSection />
|
|
|
|
<ServicesSection />
|
|
|
|
<ProductSection />
|
|
|
|
<PricingSection />
|
|
|
|
<ReviewsSection />
|
|
|
|
<FaqSection />
|
|
|
|
<ContactSection />
|
|
</>
|
|
);
|
|
}
|