39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
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 ServicesSection from './HomePage/sections/Services';
|
|
import GallerySection from './HomePage/sections/Gallery';
|
|
import AboutSection from './HomePage/sections/About';
|
|
import TestimonialsSection from './HomePage/sections/Testimonials';
|
|
import PricingSection from './HomePage/sections/Pricing';
|
|
import FaqSection from './HomePage/sections/Faq';
|
|
import ContactSection from './HomePage/sections/Contact';
|
|
|
|
|
|
import LocationSection from './HomePage/sections/Location';export default function HomePage(): React.JSX.Element {
|
|
return (
|
|
<>
|
|
<HeroSection />
|
|
|
|
<ServicesSection />
|
|
|
|
<GallerySection />
|
|
|
|
<AboutSection />
|
|
|
|
<TestimonialsSection />
|
|
|
|
<PricingSection />
|
|
|
|
<FaqSection />
|
|
<LocationSection />
|
|
|
|
<ContactSection />
|
|
</>
|
|
);
|
|
}
|