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