From ad1b8f4803ada857545d2cdcdbfc2ca8f0bac5fb Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 13 Jun 2026 16:02:37 +0000 Subject: [PATCH] Switch to version 1: modified src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 175 +++++++++++++++++++++++++++++++++++------ 1 file changed, 151 insertions(+), 24 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 2d31221..dee36fa 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,36 +1,163 @@ -// 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 FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards'; +import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento'; +import HeroBrand from '@/components/sections/hero/HeroBrand'; +import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; +import PricingCenteredCards from '@/components/sections/pricing/PricingCenteredCards'; +import TestimonialMarqueeOverlayCards from '@/components/sections/testimonial/TestimonialMarqueeOverlayCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; -import React from 'react'; -import HeroSection from './HomePage/sections/Hero'; -import AboutSection from './HomePage/sections/About'; -import FeaturesSection from './HomePage/sections/Features'; -import StatsSection from './HomePage/sections/Stats'; -import CarrerasSection from './HomePage/sections/Carreras'; -import PricingSection from './HomePage/sections/Pricing'; -import TestimonialsSection from './HomePage/sections/Testimonials'; -import ContactoSection from './HomePage/sections/Contacto'; - -export default function HomePage(): React.JSX.Element { +export default function HomePage() { return ( -<> - + <> +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
); }