diff --git a/src/index.css b/src/index.css index adefe5d..5f7de13 100644 --- a/src/index.css +++ b/src/index.css @@ -5,16 +5,16 @@ @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400;1,500;1,600;1,700&display=swap"); :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; + /* @colorThemes/darkTheme/highFashion */ + --background: #0a0a0a; + --card: #141414; + --foreground: #f5f5f0; + --primary-cta: #ffffff; + --primary-cta-text: #000000; + --secondary-cta: #1a1a1a; + --secondary-cta-text: #ffffff; + --accent: #8a8a8a; + --background-accent: #1f1f1f; /* @layout/border-radius/rounded */ --radius: 1.5rem; diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index ccd9f89..1622106 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,36 +1,44 @@ -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. Non-block content (wrappers, non-inlinable sections) is +// preserved inline; extracted section blocks become refs. + 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 Galaxy from "@/components/Galaxy"; -import LiquidChrome from "@/components/LiquidChrome"; -import Silk from "@/components/Silk"; +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() { +const Galaxy = ({ glowIntensity = 0.5 }: any) => ( +
+
+
+
+); + +const LiquidChrome = ({ speed = 1 }: any) => ( +
+
+
+
+); + +const Silk = ({ speed = 1, scale = 1, color, rotation = 0 }: any) => ( +
+
+
+); + +export default function HomePage(): React.JSX.Element { return ( - + -
- -
+
-
- -
+
-
- -
+ -
- -
+ -
- -
+ -
- -
+
); } \ No newline at end of file diff --git a/src/pages/HomePage/sections/Faq.tsx b/src/pages/HomePage/sections/Faq.tsx new file mode 100644 index 0000000..9656baa --- /dev/null +++ b/src/pages/HomePage/sections/Faq.tsx @@ -0,0 +1,21 @@ +// 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..ba73969 --- /dev/null +++ b/src/pages/HomePage/sections/Features.tsx @@ -0,0 +1,23 @@ +// 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..2d69bfe --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,25 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "hero" section. + +import React from 'react'; +import HeroBillboardCreator from "@/components/sections/hero/HeroBillboardCreator"; + +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..ba022ce --- /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..3f2dc4f --- /dev/null +++ b/src/pages/HomePage/sections/Pricing.tsx @@ -0,0 +1,21 @@ +// 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..b741bb0 --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,22 @@ +// 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 ( +
+ +
+ ); +}