From e710a0e86d6503a63fc0b0a63fb05f9ec502114f Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 13 Jun 2026 14:56:40 +0000 Subject: [PATCH] Update src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 260 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 236 insertions(+), 24 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index e7416be..33a8639 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,31 +1,243 @@ -// AUTO-GENERATED shell by per-section-migrate. -// Section bodies live in .//sections/.tsx. Edit the section -// files directly; this shell only fixes render order. - import LightRaysCenterBackground from "@/components/ui/LightRaysCenterBackground"; import { StyleProvider } from "@/components/ui/StyleProvider"; +import HeroBillboardFloatingCards from "@/components/sections/hero/HeroBillboardFloatingCards"; +import FeaturesGridSplit from "@/components/sections/features/FeaturesGridSplit"; import FeaturesMediaCards from "@/components/sections/features/FeaturesMediaCards"; -import React from 'react'; -import HeroSection from './HomePage/sections/Hero'; -import FeaturesSection from './HomePage/sections/Features'; -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 BlogSection from './HomePage/sections/Blog'; -import ContactSection from './HomePage/sections/Contact'; +import MetricsFeatureCards from "@/components/sections/metrics/MetricsFeatureCards"; +import PricingLayeredCards from "@/components/sections/pricing/PricingLayeredCards"; +import TestimonialDetailedCards from "@/components/sections/testimonial/TestimonialDetailedCards"; +import FaqTwoColumn from "@/components/sections/faq/FaqTwoColumn"; +import BlogSimpleCards from "@/components/sections/blog/BlogSimpleCards"; +import ContactCta from "@/components/sections/contact/ContactCta"; -export default function HomePage(): React.JSX.Element { +export default function HomePage() { return ( - <> - - - - - - - - - + +
+ +
+ + + +
+ +
+ +
+ +
+ +
+ +
+ + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
); }