From 90f63969b91f8a0ff18fcaad4e39f4ba1dc34eb9 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 20 Jun 2026 19:49:43 +0000 Subject: [PATCH] Switch to version 1: modified src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 275 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 251 insertions(+), 24 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 92d12e5..a855f20 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,36 +1,263 @@ -// 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 AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; +import ContactCta from '@/components/sections/contact/ContactCta'; +import FaqSimple from '@/components/sections/faq/FaqSimple'; +import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards'; +import HeroBillboardBrand from '@/components/sections/hero/HeroBillboardBrand'; +import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards'; +import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards'; +import TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards'; +import { Award, Shield, Zap } 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 ProductsSection from './HomePage/sections/Products'; -import MetricsSection from './HomePage/sections/Metrics'; -import PricingSection from './HomePage/sections/Pricing'; -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 ( -<> - + <> +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
); }