29 lines
947 B
TypeScript
29 lines
947 B
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 MenuSection from './HomePage/sections/Menu';
|
|
import HighlightsSection from './HomePage/sections/Highlights';
|
|
import TestimonialsSection from './HomePage/sections/Testimonials';
|
|
import MetricsSection from './HomePage/sections/Metrics';
|
|
import FaqSection from './HomePage/sections/Faq';
|
|
import ContactSection from './HomePage/sections/Contact';
|
|
|
|
export default function HomePage(): React.JSX.Element {
|
|
return (
|
|
<>
|
|
<HeroSection />
|
|
<AboutSection />
|
|
<MenuSection />
|
|
<HighlightsSection />
|
|
<TestimonialsSection />
|
|
<MetricsSection />
|
|
<FaqSection />
|
|
<ContactSection />
|
|
</>
|
|
);
|
|
}
|