Merge version_32_1782587214315 into main #33

Merged
bender merged 1 commits from version_32_1782587214315 into main 2026-06-27 19:08:37 +00:00

View File

@@ -1,35 +1,22 @@
// 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 FeaturesSection from './HomePage/sections/Features';
import ProductsSection from './HomePage/sections/Products';
import TestimonialsSection from './HomePage/sections/Testimonials';
import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
import ReservationsCtaSection from './HomePage/sections/ReservationsCta';
import ReservationsCtaSection from './HomePage/sections/ReservationsCta';export default function HomePage(): React.JSX.Element {
export default function HomePage(): React.JSX.Element {
return (
<>
<HeroSection />
<>
<HeroSection />
<ReservationsCtaSection />
<AboutSection />
<FeaturesSection />
<ProductsSection />
<TestimonialsSection />
<FaqSection />
<ContactSection />
<FeaturesSection />
<ProductsSection />
<TestimonialsSection />
<FaqSection />
<ContactSection />
</>
);
}
}