Files
37bf60a2-604a-4cc0-937e-a4c…/src/pages/HomePage.tsx
2026-06-25 06:54:44 +00:00

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 StorySection from './HomePage/sections/Story';
import MenuSection from './HomePage/sections/Menu';
import GallerySection from './HomePage/sections/Gallery';
import TestimonialsSection from './HomePage/sections/Testimonials';
import MetricsSection from './HomePage/sections/Metrics';
import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
import BookingSection from './HomePage/sections/Booking';export default function HomePage(): React.JSX.Element {
return (
<>
<HeroSection />
<StorySection />
<MenuSection />
<GallerySection />
<TestimonialsSection />
<MetricsSection />
<FaqSection />
<ContactSection />
<BookingSection />
</>
);
}