From 8d58fefa111e569b144414e687d47da672ff4881 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 18:36:52 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/pages/ServicesPage.tsx --- src/pages/ServicesPage.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/pages/ServicesPage.tsx b/src/pages/ServicesPage.tsx index 4411cb9..cdf556b 100644 --- a/src/pages/ServicesPage.tsx +++ b/src/pages/ServicesPage.tsx @@ -94,6 +94,16 @@ export default function ServicesPage() { description: "Conversion-focused refinement.", imageSrc: "http://img.b2bpic.net/free-photo/business-director-working-her-own-office-with-green-screen_482257-122590.jpg", }, + { + title: "Launch", + description: "Seamless deployment and rollout.", + imageSrc: "http://img.b2bpic.net/free-photo/still-life-graphic-design-office_23-2151345424.jpg", + }, + { + title: "Support", + description: "Ongoing maintenance and updates.", + imageSrc: "http://img.b2bpic.net/free-photo/factory-employee-works-mockup-tablet-executives-discussing-strategies_482257-126500.jpg", + }, ]} /> -- 2.49.1 From 91a63bc1afbe57d2a3de327213296f46ea783d4b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 22 Jun 2026 18:36:56 +0000 Subject: [PATCH 2/2] Update src/pages/ServicesPage.tsx --- src/pages/ServicesPage.tsx | 142 +++++++++++-------------------------- 1 file changed, 42 insertions(+), 100 deletions(-) diff --git a/src/pages/ServicesPage.tsx b/src/pages/ServicesPage.tsx index cdf556b..88daa1a 100644 --- a/src/pages/ServicesPage.tsx +++ b/src/pages/ServicesPage.tsx @@ -5,109 +5,51 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function ServicesPage() { return ( <> -
- +
+ - -
+ tag="Investment" + title="Bespoke Digital Packages" + description="Scalable solutions for premium brands." + plans={[ + { + tag: "Startup", price: "$2,500+", description: "Essential web presence for growing brands.", primaryButton: { + text: "Choose Basic", href: "/contact"}, + features: ["Modern Design", "SEO Optimized", "Responsive Grid", "Email Support"], + }, + { + tag: "Growth", price: "$5,000+", description: "Custom platforms with advanced integrations.", primaryButton: { + text: "Choose Pro", href: "/contact"}, + features: ["Custom Software", "Performance Tuning", "CRM Integration", "Priority Support"], + }, + { + tag: "Enterprise", price: "$10,000+", description: "Full-stack luxury digital transformation.", primaryButton: { + text: "Choose Elite", href: "/contact"}, + features: ["Bespoke Apps", "Advanced Security", "24/7 Dedicated Team", "Brand Strategy"], + }, + ]} + /> +
+
-
- +
+ - -
+ tag="Workflow" + title="Our Creative Process" + description="How we turn complex requirements into high-conversion digital experiences." + items={[ + { title: "Discovery", description: "Deep-dive brand analysis.", imageSrc: "http://img.b2bpic.net/free-photo/still-life-graphic-design-office_23-2151345424.jpg" }, + { title: "Strategy", description: "Custom architecture mapping.", imageSrc: "http://img.b2bpic.net/free-photo/factory-employee-works-mockup-tablet-executives-discussing-strategies_482257-126500.jpg" }, + { title: "Design", description: "High-fidelity visual prototypes.", imageSrc: "http://img.b2bpic.net/free-photo/digital-art-style-fashion-design-sketch-paper_23-2151487073.jpg" }, + { title: "Engineering", description: "Performant, secure code.", imageSrc: "http://img.b2bpic.net/free-photo/woman-typing-laptop-sitting-home-with-automation-lighting-system-using-voice-controlled-sma_482257-2844.jpg" }, + { title: "Optimization", description: "Conversion-focused refinement.", imageSrc: "http://img.b2bpic.net/free-photo/business-director-working-her-own-office-with-green-screen_482257-122590.jpg" }, + { title: "Launch", description: "Deployment and scaling.", imageSrc: "http://img.b2bpic.net/free-photo/rendering-smart-home-device_23-2151039375.jpg" }, + { title: "Analysis", description: "Post-launch metrics review.", imageSrc: "http://img.b2bpic.net/free-photo/digital-banking-transparent-screen_53876-105382.jpg" } + ]} + /> +
+
); } -- 2.49.1