From 80a5629e3e09cac963478ccf36b0ab2816112c49 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 23:30:59 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/pages/ServicesPage.tsx --- src/pages/ServicesPage.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/pages/ServicesPage.tsx b/src/pages/ServicesPage.tsx index 47e9453..6abef84 100644 --- a/src/pages/ServicesPage.tsx +++ b/src/pages/ServicesPage.tsx @@ -29,8 +29,6 @@ export default function ServicesPage() { value: "Fast", }, ], - imageSrc: "http://img.b2bpic.net/free-photo/template-badge-layout-mock-up-visual-blank-concept_53876-120337.jpg", - imageAlt: "Template Badge Layout Mock-up Visual Blank Concept", }, { title: "AI Automation", @@ -45,8 +43,6 @@ export default function ServicesPage() { }, ], placeholder: "...", - imageSrc: "http://img.b2bpic.net/free-photo/still-life-graphic-design-office_23-2151345397.jpg?_wi=2", - imageAlt: "Template Badge Layout Mock-up Visual Blank Concept", }, ]} /> -- 2.49.1 From b476b463e9f3a7340b6c3f79744a574a60c6ad9f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 15 Jun 2026 23:31:02 +0000 Subject: [PATCH 2/2] Update src/pages/ServicesPage.tsx --- src/pages/ServicesPage.tsx | 109 ++++++++++++++----------------------- 1 file changed, 42 insertions(+), 67 deletions(-) diff --git a/src/pages/ServicesPage.tsx b/src/pages/ServicesPage.tsx index 6abef84..ae37ca1 100644 --- a/src/pages/ServicesPage.tsx +++ b/src/pages/ServicesPage.tsx @@ -6,76 +6,51 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function ServicesPage() { return ( <> -
- +
+ - -
+ tag="OUR SERVICES" + title="SOLUTIONS THAT DRIVE GROWTH" + description="From custom designs to automated lead generation systems." + features={[ + { + title: "Website Design", description: "Custom sites from scratch.", bentoComponent: "info-card-marquee", infoCards: [ + { + icon: "Pen", label: "UI Design", value: "Premium"}, + { + icon: "Code", label: "Development", value: "Fast"}, + ], + }, + { + title: "AI Automation", description: "Smart chatbots that convert visitors into leads 24/7.", bentoComponent: "chat-marquee", aiIcon: "Star", userIcon: "User", exchanges: [ + { + userMessage: "Do you offer quotes?", aiResponse: "Yes, I can get that for you!"}, + ], + placeholder: "..."}, + ]} + /> +
+
-
- +
+ - -
+ tag="PERFORMANCE" + title="METRICS THAT MATTER" + description="Data-driven results for your business." + metrics={[ + { + value: "2x", title: "Lead Volume", features: [ + "Qualified traffic", "AI filtering"], + }, + { + value: "99%", title: "Uptime", features: [ + "Cloud hosting", "Global CDN"], + }, + ]} + /> +
+
); } -- 2.49.1