From 80969e5aeed8187f3ac95334461438bb14ce33a1 Mon Sep 17 00:00:00 2001 From: null Date: Sun, 17 May 2026 15:44:27 -0500 Subject: [PATCH] feat: merge 8x8 page into UCaaS/CCaaS service pages, remove standalone route (batch 0.6.6) --- src/components/layout/Footer.jsx | 1 - src/components/layout/Header.jsx | 1 - src/data/services.js | 16 +++++- src/pages/8x8.jsx | 97 -------------------------------- src/router.jsx | 2 - 5 files changed, 14 insertions(+), 103 deletions(-) delete mode 100644 src/pages/8x8.jsx diff --git a/src/components/layout/Footer.jsx b/src/components/layout/Footer.jsx index 1d1e948..ccaf392 100644 --- a/src/components/layout/Footer.jsx +++ b/src/components/layout/Footer.jsx @@ -13,7 +13,6 @@ const Footer = () => { { name: 'Home', href: '/' }, { name: 'Services', href: '/services' }, { name: 'Industries', href: '/industries' }, - { name: '8x8', href: '/8x8' }, { name: 'About', href: '/about' }, { name: 'Contact', href: '/contact' }, { name: 'Support', href: '/support' }, diff --git a/src/components/layout/Header.jsx b/src/components/layout/Header.jsx index a3a7172..8346e4d 100644 --- a/src/components/layout/Header.jsx +++ b/src/components/layout/Header.jsx @@ -20,7 +20,6 @@ const Header = () => { { name: 'Home', href: '/' }, { name: 'Services', href: '/services' }, { name: 'Industries', href: '/industries' }, - { name: '8x8', href: '/8x8' }, { name: 'About', href: '/about' }, { name: 'Contact', href: '/contact' }, { name: 'Support', href: '/support' }, diff --git a/src/data/services.js b/src/data/services.js index 27a08e5..4e3ca1d 100644 --- a/src/data/services.js +++ b/src/data/services.js @@ -4,13 +4,19 @@ export const services = [ 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. Our solutions include Cisco Webex, Cisco Unified Communications Manager, and 8x8 UCaaS platforms.', + 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. + +As an 8x8 Certified Partner, we have deep expertise in implementing and supporting 8x8 UCaaS solutions, ensuring our customers get the most value from their investment. Our 8x8 expertise includes VoIP implementation, cloud PBX migration, unified communications deployments, and ongoing system support. + +Our solutions include Cisco Webex, Cisco Unified Communications Manager, and 8x8 UCaaS platforms.`, icon: 'message-circle', benefits: [ 'Seamless voice, video, and messaging integration', 'Mobile and desktop app support', 'Persistent chat and file sharing', 'Presence indicators for real-time visibility', + '8x8 UCaaS implementation and migration', + 'VoIP and cloud PBX setup', ], idealFor: [ 'Remote and hybrid teams', @@ -24,13 +30,19 @@ export const services = [ 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. We support Cisco Webex Contact Center, 8x8 Contact Center, and other leading platforms.', + 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. + +As an 8x8 Certified Partner, we deliver enterprise-grade contact center solutions with 99.999% uptime reliability. Our 8x8 expertise includes contact center setup, omnichannel routing, AI-powered agent assistance, and real-time analytics dashboards. + +We support Cisco Webex Contact Center, 8x8 Contact Center, and other leading platforms.`, icon: 'users', benefits: [ 'Omnichannel customer interactions', 'Real-time analytics and reporting', 'AI-powered agent assistance', 'Scalable cloud infrastructure', + '8x8 Contact Center setup and optimization', + '99.999% uptime reliability', ], idealFor: [ 'Customer service teams', diff --git a/src/pages/8x8.jsx b/src/pages/8x8.jsx deleted file mode 100644 index a720ac1..0000000 --- a/src/pages/8x8.jsx +++ /dev/null @@ -1,97 +0,0 @@ -const EightXEight = () => { - return ( -
- {/* Page Hero */} -
-

8x8 Certified Partner

-

- As an 8x8 Certified Partner, we help organizations implement and manage cloud communications solutions that drive business success. -

-
- - {/* About 8x8 */} -
-
-

What is 8x8?

-

- 8x8 is a leading provider of cloud communications and contact center solutions. Their platform combines voice, video, chat, email, and contact center capabilities into a single, unified solution that helps businesses communicate more effectively and serve customers better. -

-

- As a certified partner, we have deep expertise in implementing and supporting 8x8 solutions, ensuring our customers get the most value from their investment. -

-
-
-
- 8x8 Logo -
-
-
- - {/* Our Expertise */} -
-

8x8 Expertise

-
- {[ - 'VoIP Implementation', - 'Cloud PBX Migration', - 'Contact Center Setup', - 'Unified Communications', - 'Video Conferencing', - 'Collaboration Tools', - 'System Integration', - 'Ongoing Support', - ].map((expertise, index) => ( -
-
- - - -
- {expertise} -
- ))} -
-
- - {/* Benefits */} -
-

Why Choose 8x8

-
- {[ - { title: 'Scalability', desc: 'Easily scale your communications as your business grows' }, - { title: 'Reliability', desc: '99.999% uptime guarantee for mission-critical communications' }, - { title: 'Integration', desc: 'Seamlessly integrate with your favorite business applications' }, - { title: 'Mobility', desc: 'Full-featured mobile apps for remote and traveling employees' }, - { title: 'Analytics', desc: 'Real-time insights and reporting to optimize performance' }, - { title: 'Support', desc: '24/7 expert support to keep your communications running' }, - ].map((benefit, index) => ( -
-

{benefit.title}

-

{benefit.desc}

-
- ))} -
-
- - {/* CTA */} -
-

Ready to Explore 8x8 Solutions?

-

- Schedule a free consultation with our 8x8 certified experts. -

- - Request Consultation - -
-
- ) -} - -export default EightXEight diff --git a/src/router.jsx b/src/router.jsx index a2dfbe6..aba5e2a 100644 --- a/src/router.jsx +++ b/src/router.jsx @@ -6,7 +6,6 @@ import Services from './pages/Services.jsx' import ServiceDetail from './pages/ServiceDetail.jsx' import Industries from './pages/Industries.jsx' import IndustryDetail from './pages/IndustryDetail.jsx' -import EightXEight from './pages/8x8.jsx' import Contact from './pages/Contact.jsx' import Support from './pages/Support.jsx' @@ -21,7 +20,6 @@ const router = createBrowserRouter([ { path: 'services/:slug', element: }, { path: 'industries', element: }, { path: 'industries/:slug', element: }, - { path: '8x8', element: }, { path: 'contact', element: }, { path: 'support', element: }, ],