34 lines
929 B
TypeScript
34 lines
929 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 MarqueeSection from './HomePage/sections/Marquee';
|
|
import ServicesSection from './HomePage/sections/Services';
|
|
import GallerySection from './HomePage/sections/Gallery';
|
|
import ReviewsSection from './HomePage/sections/Reviews';
|
|
import AboutSection from './HomePage/sections/About';
|
|
import BookingSection from './HomePage/sections/Booking';
|
|
|
|
export default function HomePage(): React.JSX.Element {
|
|
return (
|
|
<>
|
|
<HeroSection />
|
|
|
|
<MarqueeSection />
|
|
|
|
<ServicesSection />
|
|
|
|
<GallerySection />
|
|
|
|
<ReviewsSection />
|
|
|
|
<AboutSection />
|
|
|
|
<BookingSection />
|
|
</>
|
|
);
|
|
}
|