diff --git a/src/index.css b/src/index.css index adefe5d..532d085 100644 --- a/src/index.css +++ b/src/index.css @@ -6,15 +6,15 @@ :root { /* @colorThemes/lightTheme/lightRed */ - --background: #fffafa; - --card: #ffffff; - --foreground: #1a0000; - --primary-cta: #e63946; - --primary-cta-text: #fffafa; - --secondary-cta: #ffffff; - --secondary-cta-text: #1a0000; - --accent: #f5c4c7; - --background-accent: #f09ca1; + --background: #ffffff; + --card: #f8f9fa; + --foreground: #111827; + --primary-cta: #000000; + --primary-cta-text: #ffffff; + --secondary-cta: #f3f4f6; + --secondary-cta-text: #111827; + --accent: #e5e7eb; + --background-accent: #f9fafb; /* @layout/border-radius/rounded */ --radius: 1.5rem; diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 80f898a..2095dc3 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,184 +1,26 @@ -import { BarChart3, Film, Megaphone } from "lucide-react"; +// 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 NoiseGradientBackground from "@/components/ui/NoiseGradientBackground"; import { StyleProvider } from "@/components/ui/StyleProvider"; -import HeroBillboardCreator from "@/components/sections/hero/HeroBillboardCreator"; -import MetricsIconCards from "@/components/sections/metrics/MetricsIconCards"; -import TestimonialColumnMarqueeCards from "@/components/sections/testimonial/TestimonialColumnMarqueeCards"; -import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; -import PricingHighlightedCards from "@/components/sections/pricing/PricingHighlightedCards"; -import FaqTwoColumn from "@/components/sections/faq/FaqTwoColumn"; +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import MetricsSection from './HomePage/sections/Metrics'; +import FeaturesSection from './HomePage/sections/Features'; +import TestimonialsSection from './HomePage/sections/Testimonials'; +import PricingSection from './HomePage/sections/Pricing'; +import FaqSection from './HomePage/sections/Faq'; -export default function HomePage() { +export default function HomePage(): React.JSX.Element { return ( - - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ <> + + + + + + + ); } diff --git a/src/pages/HomePage/sections/Faq.tsx b/src/pages/HomePage/sections/Faq.tsx new file mode 100644 index 0000000..26d6cba --- /dev/null +++ b/src/pages/HomePage/sections/Faq.tsx @@ -0,0 +1,27 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "faq" section. + +import React from 'react'; +import FaqTwoColumn from "@/components/sections/faq/FaqTwoColumn"; + +export default function FaqSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Features.tsx b/src/pages/HomePage/sections/Features.tsx new file mode 100644 index 0000000..0aa7b76 --- /dev/null +++ b/src/pages/HomePage/sections/Features.tsx @@ -0,0 +1,39 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "features" section. + +import React from 'react'; +import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; + +export default function FeaturesSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx new file mode 100644 index 0000000..7cca1bf --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,19 @@ +// Created by add_section_from_catalog (HeroSplit). + +import React from 'react'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; + +export default function HeroSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Metrics.tsx b/src/pages/HomePage/sections/Metrics.tsx new file mode 100644 index 0000000..1210759 --- /dev/null +++ b/src/pages/HomePage/sections/Metrics.tsx @@ -0,0 +1,23 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "metrics" section. + +import React from 'react'; +import { BarChart3, Film, Megaphone } from "lucide-react"; +import MetricsIconCards from "@/components/sections/metrics/MetricsIconCards"; + +export default function MetricsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Pricing.tsx b/src/pages/HomePage/sections/Pricing.tsx new file mode 100644 index 0000000..e3b0705 --- /dev/null +++ b/src/pages/HomePage/sections/Pricing.tsx @@ -0,0 +1,63 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "pricing" section. + +import React from 'react'; +import PricingHighlightedCards from "@/components/sections/pricing/PricingHighlightedCards"; + +export default function PricingSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Testimonials.tsx b/src/pages/HomePage/sections/Testimonials.tsx new file mode 100644 index 0000000..1c7677d --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,37 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "testimonials" section. + +import React from 'react'; +import TestimonialColumnMarqueeCards from "@/components/sections/testimonial/TestimonialColumnMarqueeCards"; + +export default function TestimonialsSection(): React.JSX.Element { + return ( +
+ +
+ ); +}