From 940cd94ba327a72820c6989ffe2cc6024af38084 Mon Sep 17 00:00:00 2001 From: null Date: Sun, 17 May 2026 14:49:01 -0500 Subject: [PATCH] feat(services): business outcomes rewrite (batch 0.5.4) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Section title: Our Services → What We Handle - Subtitle: outcome-focused language - Added homeDesc field to all 7 services in data/services.js - Service cards now show icon + homeDesc + shortDesc - lucide-react icons per service (MessageCircle, Users, etc) - B2B professional card layout with icon containers - Service detail pages unchanged --- src/data/services.js | 7 +++++++ src/pages/Home.jsx | 23 +++++++++++++++++------ 2 files changed, 24 insertions(+), 6 deletions(-) diff --git a/src/data/services.js b/src/data/services.js index f53d2e0..f5151f4 100644 --- a/src/data/services.js +++ b/src/data/services.js @@ -3,6 +3,7 @@ export const services = [ id: 'unified-communications', name: 'Unified Communications', shortDesc: 'Modernize your business communications with seamless integration', + homeDesc: 'Stop juggling separate phone, video, and messaging systems. One platform, one bill, zero headaches.', fullDesc: 'Transform your business communications with our comprehensive Unified Communications solutions. We help you integrate voice, video, messaging, and collaboration tools into a single, intuitive platform that works across all your devices and locations.', icon: 'message-circle', benefits: [ @@ -22,6 +23,7 @@ export const services = [ id: 'contact-center', name: 'Contact Center', shortDesc: 'Deliver exceptional customer experiences with modern contact center solutions', + homeDesc: 'Your customers reach a real person faster. Lower wait times, happier callers, better reviews.', fullDesc: 'Create exceptional customer experiences with our contact center solutions. Our cloud-based platforms help you manage customer interactions across phone, email, chat, and social media channels with powerful analytics and workforce management tools.', icon: 'users', benefits: [ @@ -41,6 +43,7 @@ export const services = [ id: 'managed-support', name: 'Managed Support', shortDesc: 'Expert IT support with proactive monitoring and rapid response', + homeDesc: 'Your IT runs itself. 24/7 monitoring catches problems before you even notice them.', fullDesc: 'Our Managed Support services provide comprehensive IT help desk and infrastructure support. With 24/7 monitoring, rapid response times, and dedicated support engineers, we ensure your technology infrastructure runs smoothly so you can focus on your business.', icon: 'life-buoy', benefits: [ @@ -60,6 +63,7 @@ export const services = [ id: 'consulting-training', name: 'Consulting & Training', shortDesc: 'Expert guidance and training for communications and infrastructure', + homeDesc: 'Get a clear plan, not a sales pitch. We map your needs, implement the right solution, and train your team.', fullDesc: 'Our consulting and training services help you make the most of your communications infrastructure. From strategic planning and implementation to hands-on training, we provide the expertise your team needs to succeed.', icon: 'graduation-cap', benefits: [ @@ -79,6 +83,7 @@ export const services = [ id: 'infrastructure-cabling', name: 'Infrastructure Cabling', shortDesc: 'Professional structured cabling for reliable network performance', + homeDesc: 'Bad cabling means dropped calls and slow networks. We build it right the first time.', fullDesc: 'Our infrastructure cabling services ensure your physical network foundation supports current and future needs. We design and install copper and fiber optic cabling systems that provide high-performance, scalable connectivity for your entire organization.', icon: 'link', benefits: [ @@ -98,6 +103,7 @@ export const services = [ id: 'wireless-access', name: 'Wireless Access', shortDesc: 'Enterprise-grade Wi-Fi solutions for reliable mobile connectivity', + homeDesc: 'Wi-Fi that just works — everywhere in your building. No dead zones, no complaints.', fullDesc: 'Our wireless access solutions provide robust, high-performance Wi-Fi coverage for your entire facility. From site surveys and design to installation and optimization, we ensure seamless mobile connectivity for employees and guests.', icon: 'wifi', benefits: [ @@ -117,6 +123,7 @@ export const services = [ id: 'local-networking', name: 'Local Networking', shortDesc: 'Robust local network infrastructure for business-critical operations', + homeDesc: 'A network that doesn\'t go down when it matters. Secure, fast, and built for your workload.', fullDesc: 'Build a reliable local network infrastructure that supports your business operations. Our networking solutions include routing, switching, firewall configuration, and network segmentation to ensure secure, high-performance connectivity throughout your organization.', icon: 'network', benefits: [ diff --git a/src/pages/Home.jsx b/src/pages/Home.jsx index c814d60..15e9afe 100644 --- a/src/pages/Home.jsx +++ b/src/pages/Home.jsx @@ -3,7 +3,7 @@ import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/com import { services } from '@/data/services' import { industries } from '@/data/industries' import { useNavigate } from 'react-router-dom' -import { MapPin } from 'lucide-react' +import { MapPin, MessageCircle, Users, LifeBuoy, GraduationCap, Link as LinkIcon, Wifi, Network } from 'lucide-react' const Home = () => { const navigate = useNavigate() @@ -167,20 +167,31 @@ const Home = () => {
-

Our Services

+

What We Handle

- Comprehensive communications and infrastructure solutions for every business need + From phones to firewalls, we keep your business running

{services.map((service) => ( - {service.name} - {service.shortDesc} +
+
+ {service.icon === 'message-circle' && } + {service.icon === 'users' && } + {service.icon === 'life-buoy' && } + {service.icon === 'graduation-cap' && } + {service.icon === 'link' && } + {service.icon === 'wifi' && } + {service.icon === 'network' && } +
+ {service.name} +
+ {service.homeDesc}
-

{service.fullDesc}

+

{service.shortDesc}