From 678ab1cbf09a45f64c85ee89fefa9db3f4d3e81d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 13 Jun 2026 20:57:46 +0000 Subject: [PATCH] Switch to version 1: modified src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 175 ++++++++++++++++++++++++++++++++++++----- 1 file changed, 157 insertions(+), 18 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 95baa71..217db65 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,27 +1,166 @@ -// AUTO-GENERATED shell by per-section-migrate. -// Section bodies live in .//sections/.tsx. Edit the section -// files directly. Non-block content (wrappers, non-inlinable sections) is -// preserved inline; extracted section blocks become refs. +import ContactCta from '@/components/sections/contact/ContactCta'; +import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion'; +import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; +import HeroBrand from '@/components/sections/hero/HeroBrand'; +import TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; -import React from 'react'; -import HeroSection from './HomePage/sections/Hero'; -import FeaturedSection from './HomePage/sections/Featured'; -import TestimonialsSection from './HomePage/sections/Testimonials'; -import FaqSectionSection from './HomePage/sections/FaqSection'; -import ContactCtaSection from './HomePage/sections/ContactCta'; - -export default function HomePage(): React.JSX.Element { +export default function HomePage() { return ( -<> - + <> +
+ + + +
- + - +
+ + + +
- +
+ + + +
- +
+ + + +
); }