From 9cb43630d7bb8103c201ad391e890b0cdea2aa9f Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 4 Jul 2026 15:21:21 +0000 Subject: [PATCH 1/3] Update src/components/Layout.tsx --- src/components/Layout.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 396aec7..900b34e 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -24,7 +24,6 @@ export default function Layout() { Date: Sat, 4 Jul 2026 15:21:24 +0000 Subject: [PATCH 2/3] Update src/components/sections/footer/FooterSimpleReveal.tsx --- src/components/sections/footer/FooterSimpleReveal.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/components/sections/footer/FooterSimpleReveal.tsx b/src/components/sections/footer/FooterSimpleReveal.tsx index 42719be..916234e 100644 --- a/src/components/sections/footer/FooterSimpleReveal.tsx +++ b/src/components/sections/footer/FooterSimpleReveal.tsx @@ -1,6 +1,5 @@ import { useRef, useEffect, useState } from "react"; import { useButtonClick } from "@/hooks/useButtonClick"; -import ImageOrVideo from "@/components/ui/ImageOrVideo"; type FooterColumn = { title: string; @@ -41,13 +40,11 @@ const FooterBottomLink = ({ label, href, onClick }: FooterLink) => { const FooterSimpleReveal = ({ brand, - brandImageSrc, columns, copyright, links, }: { brand: string; - brandImageSrc?: string; columns: FooterColumn[]; copyright: string; links: FooterLink[]; @@ -92,11 +89,7 @@ const FooterSimpleReveal = ({ >
- {brandImageSrc ? ( - - ) : ( -

{brand}

- )} +

{brand}

{columns.map((column) => ( -- 2.49.1 From 445a4f4f198d1cb4be239187bb9d8fae03a3a62c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 4 Jul 2026 15:21:30 +0000 Subject: [PATCH 3/3] Update src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 271 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 245 insertions(+), 26 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 6c483de..ac3113c 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,46 +1,265 @@ -// 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 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'; +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"; -export default function HomePage(): React.JSX.Element { +export default function HomePage() { return ( - +
+ +
- +
+ +
- +
+ +
- +
+ +
- +
+ +
- +
+ +
- +
+ +
- +
+ +
- +
+ +
-- 2.49.1