From a08fd579494228b600153e1a17a5d3e7db8f0482 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 19:01:43 +0000 Subject: [PATCH] Switch to version 1: modified src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 375 ++++++++++++++++++++++++++++++++++++++--- 1 file changed, 353 insertions(+), 22 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 076450b..c7075a7 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,28 +1,359 @@ -// AUTO-GENERATED shell by per-section-migrate. -// Section bodies live in .//sections/.tsx. Edit the section -// files directly; this shell only fixes render order. +import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; +import ContactCta from '@/components/sections/contact/ContactCta'; +import FaqSimple from '@/components/sections/faq/FaqSimple'; +import FeaturesAttributeCards from '@/components/sections/features/FeaturesAttributeCards'; +import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; +import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards'; +import TeamStackedCards from '@/components/sections/team/TeamStackedCards'; +import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards'; +import { Award, Clock, DollarSign, Droplet, Flame, Pizza, Star, Wheat } from "lucide-react"; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; -import React from 'react'; -import HeroSection from './HomePage/sections/Hero'; -import AboutSection from './HomePage/sections/About'; -import MenuSection from './HomePage/sections/Menu'; -import MetricsSection from './HomePage/sections/Metrics'; -import TeamSection from './HomePage/sections/Team'; -import ReviewsSection from './HomePage/sections/Reviews'; -import FaqSection from './HomePage/sections/Faq'; -import ContactSection from './HomePage/sections/Contact'; - -export default function HomePage(): React.JSX.Element { +export default function HomePage() { return ( <> - - - - - - - - +
+ + + +
+ +
+ + + +
+ + + +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
); }