diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 900b34e..396aec7 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -24,6 +24,7 @@ export default function Layout() { { const FooterSimpleReveal = ({ brand, + brandImageSrc, columns, copyright, links, }: { brand: string; + brandImageSrc?: string; columns: FooterColumn[]; copyright: string; links: FooterLink[]; @@ -89,7 +92,11 @@ const FooterSimpleReveal = ({ >
-

{brand}

+ {brandImageSrc ? ( + + ) : ( +

{brand}

+ )}
{columns.map((column) => ( diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index a32dbc7..6c483de 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,265 +1,46 @@ +// AUTO-GENERATED shell by per-section-migrate. +// Section bodies live in the sibling sections/ folder (one file per section). +// Edit those section files directly. Non-block content (wrappers, +// non-inlinable sections) is preserved inline; extracted section blocks +// become component refs. + import { StyleProvider } from "@/components/ui/StyleProvider"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; -import HeroSplitVerticalMarqueeTall from "@/components/sections/hero/HeroSplitVerticalMarqueeTall"; -import FeaturesBento from "@/components/sections/features/FeaturesBento"; -import FeaturesMediaCarousel from "@/components/sections/features/FeaturesMediaCarousel"; -import FeaturesBorderGlow from "@/components/sections/features/FeaturesBorderGlow"; -import TestimonialTrustCard from "@/components/sections/testimonial/TestimonialTrustCard"; -import MetricsFeatureCards from "@/components/sections/metrics/MetricsFeatureCards"; -import TeamStackedCards from "@/components/sections/team/TeamStackedCards"; -import FaqSimple from "@/components/sections/faq/FaqSimple"; -import ContactCenter from "@/components/sections/contact/ContactCenter"; -import { Monitor, Zap, Shield, ArrowUpRight, Code, Palette, Layers, PenTool, Sparkles } from "lucide-react"; +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import ServicesSection from './HomePage/sections/Services'; +import WorkSection from './HomePage/sections/Work'; +import PromiseSection from './HomePage/sections/Promise'; +import TestimonialsSection from './HomePage/sections/Testimonials'; +import MetricsSection from './HomePage/sections/Metrics'; +import TeamSection from './HomePage/sections/Team'; +import FaqSection from './HomePage/sections/Faq'; +import ContactSection from './HomePage/sections/Contact'; -export default function HomePage() { +export default function HomePage(): React.JSX.Element { return ( -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+
diff --git a/src/pages/HomePage/sections/Contact.tsx b/src/pages/HomePage/sections/Contact.tsx new file mode 100644 index 0000000..c44c274 --- /dev/null +++ b/src/pages/HomePage/sections/Contact.tsx @@ -0,0 +1,20 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "contact" section. + +import React from 'react'; +import ContactCenter from "@/components/sections/contact/ContactCenter"; + +export default function ContactSection(): 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..2df713a --- /dev/null +++ b/src/pages/HomePage/sections/Faq.tsx @@ -0,0 +1,40 @@ +// 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 FaqSimple from "@/components/sections/faq/FaqSimple"; + +export default function FaqSection(): 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..93eacd0 --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,32 @@ +// 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 HeroSplitVerticalMarqueeTall from "@/components/sections/hero/HeroSplitVerticalMarqueeTall"; + +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..0aba79f --- /dev/null +++ b/src/pages/HomePage/sections/Metrics.tsx @@ -0,0 +1,50 @@ +// 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 MetricsFeatureCards from "@/components/sections/metrics/MetricsFeatureCards"; + +export default function MetricsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Promise.tsx b/src/pages/HomePage/sections/Promise.tsx new file mode 100644 index 0000000..803f426 --- /dev/null +++ b/src/pages/HomePage/sections/Promise.tsx @@ -0,0 +1,36 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "promise" section. + +import React from 'react'; +import FeaturesBorderGlow from "@/components/sections/features/FeaturesBorderGlow"; +import { Monitor, Zap, Shield, ArrowUpRight, Code, Palette, Layers, PenTool, Sparkles } from "lucide-react"; + +export default function PromiseSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Services.tsx b/src/pages/HomePage/sections/Services.tsx new file mode 100644 index 0000000..f90852d --- /dev/null +++ b/src/pages/HomePage/sections/Services.tsx @@ -0,0 +1,46 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "services" section. + +import React from 'react'; +import FeaturesBento from "@/components/sections/features/FeaturesBento"; +import { Monitor, Zap, Shield, ArrowUpRight, Code, Palette, Layers, PenTool, Sparkles } from "lucide-react"; + +export default function ServicesSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Team.tsx b/src/pages/HomePage/sections/Team.tsx new file mode 100644 index 0000000..e06eecd --- /dev/null +++ b/src/pages/HomePage/sections/Team.tsx @@ -0,0 +1,35 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "team" section. + +import React from 'react'; +import TeamStackedCards from "@/components/sections/team/TeamStackedCards"; + +export default function TeamSection(): 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..b357a30 --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,26 @@ +// 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 TestimonialTrustCard from "@/components/sections/testimonial/TestimonialTrustCard"; + +export default function TestimonialsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Work.tsx b/src/pages/HomePage/sections/Work.tsx new file mode 100644 index 0000000..72e635a --- /dev/null +++ b/src/pages/HomePage/sections/Work.tsx @@ -0,0 +1,42 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "work" section. + +import React from 'react'; +import FeaturesMediaCarousel from "@/components/sections/features/FeaturesMediaCarousel"; +import { Monitor, Zap, Shield, ArrowUpRight, Code, Palette, Layers, PenTool, Sparkles } from "lucide-react"; + +export default function WorkSection(): React.JSX.Element { + return ( +
+ +
+ ); +}