37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
// AUTO-GENERATED shell by per-section-migrate.
|
|
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
|
// files directly; this shell only fixes render order.
|
|
|
|
import React from 'react';
|
|
import HeroSection from './HomePage/sections/Hero';
|
|
import AboutSection from './HomePage/sections/About';
|
|
import RoomsSection from './HomePage/sections/Rooms';
|
|
import AmenitiesSection from './HomePage/sections/Amenities';
|
|
import RatesSection from './HomePage/sections/Rates';
|
|
import ReviewsSection from './HomePage/sections/Reviews';
|
|
import PartnersSection from './HomePage/sections/Partners';
|
|
import FaqSection from './HomePage/sections/Faq';
|
|
import ContactSection from './HomePage/sections/Contact';
|
|
|
|
|
|
|
|
{/* webild-stub @2026-06-02T15:58:48.008Z: change the about section's image to rotate every 5 seconds and add a progress bar at the bottom */}
|
|
|
|
{/* webild-stub @2026-06-02T15:47:34.838Z: make the hero section with a big image */}
|
|
|
|
export default function HomePage(): React.JSX.Element {
|
|
return (
|
|
<>
|
|
<HeroSection />
|
|
<AboutSection />
|
|
<RoomsSection />
|
|
<AmenitiesSection />
|
|
<RatesSection />
|
|
<ReviewsSection />
|
|
<PartnersSection />
|
|
<FaqSection />
|
|
<ContactSection />
|
|
</>
|
|
);
|
|
}
|