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 ( -<> - + <> +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
- +
+ + + +
); }