From e85c225f2160583d5add504bbbb389492a6ee014 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 25 Jun 2026 11:07:38 +0000 Subject: [PATCH] Switch to version 1: modified src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 274 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 250 insertions(+), 24 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 5e10594..b094f13 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,36 +1,262 @@ -// 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 AboutText from '@/components/sections/about/AboutText'; +import ContactCta from '@/components/sections/contact/ContactCta'; +import FaqSimple from '@/components/sections/faq/FaqSimple'; +import FeaturesArrowCards from '@/components/sections/features/FeaturesArrowCards'; +import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento'; +import HeroOverlayMarquee from '@/components/sections/hero/HeroOverlayMarquee'; +import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards'; +import TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards'; +import { Award, Building, Home, Layout, Palette, Star } 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 ServicesSection from './HomePage/sections/Services'; -import PortfolioSection from './HomePage/sections/Portfolio'; -import MetricsSection from './HomePage/sections/Metrics'; -import TestimonialsSection from './HomePage/sections/Testimonials'; -import FaqSection from './HomePage/sections/Faq'; -import ContactSection from './HomePage/sections/Contact'; - -export default function HomePage(): React.JSX.Element { +export default function HomePage() { return ( -<> - + <> +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
); }