diff --git a/src/data/industries.js b/src/data/industries.js index 2ca3416..100c332 100644 --- a/src/data/industries.js +++ b/src/data/industries.js @@ -1,6 +1,10 @@ export const industries = [ { id: 'healthcare', + related: [ + { to: '/services/unified-communications', label: 'Business phone and UCaaS solutions' }, + { to: '/services/contact-center', label: 'Contact center and CCaaS solutions' }, + ], name: 'Healthcare', shortDesc: 'HIPAA-compliant communications and infrastructure for medical providers', fullDesc: 'Patient experience, scheduling, and staff coordination with a focus on compliance.', @@ -20,6 +24,10 @@ export const industries = [ }, { id: 'retail', + related: [ + { to: '/services/unified-communications', label: 'Business phone and UCaaS solutions' }, + { to: '/services/contact-center', label: 'Contact center and CCaaS solutions' }, + ], name: 'Retail', shortDesc: 'Connect stores, teams, and customers with scalable retail communications', fullDesc: 'Connect stores, back office, and support teams while improving customer interaction.', @@ -39,6 +47,10 @@ export const industries = [ }, { id: 'manufacturing', + related: [ + { to: '/services/unified-communications', label: 'Business phone and UCaaS solutions' }, + { to: '/services/contact-center', label: 'Contact center and CCaaS solutions' }, + ], name: 'Manufacturing', shortDesc: 'Industrial communications for production floors and distributed operations', fullDesc: 'Reliable office-to-plant communications including paging and alerting for production environments.', @@ -58,6 +70,10 @@ export const industries = [ }, { id: 'education-finance', + related: [ + { to: '/services/unified-communications', label: 'Business phone and UCaaS solutions' }, + { to: '/services/contact-center', label: 'Contact center and CCaaS solutions' }, + ], name: 'Education & Finance', shortDesc: 'Secure, reliable communications for schools and financial institutions', fullDesc: 'Campus communications and customer-facing communications in tightly regulated environments.', diff --git a/src/data/services.js b/src/data/services.js index 57dc080..3aaed66 100644 --- a/src/data/services.js +++ b/src/data/services.js @@ -55,6 +55,13 @@ We support Cisco Webex Contact Center, 8x8 Contact Center, and other leading pla { id: 'managed-support', name: 'Managed Support', + // Asked for by both approved copy sheets: Unified Communications section 15 + // and Contact Center section 18 both list this page as one that should link + // back to them. + related: [ + { to: '/services/unified-communications', label: 'Business phone and UCaaS solutions' }, + { to: '/services/contact-center', label: 'Contact center and CCaaS solutions' }, + ], 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: 'Consistent support, clear accountability, and lifecycle management that keep your environment stable long after deployment.', diff --git a/src/pages/IndustryDetail.jsx b/src/pages/IndustryDetail.jsx index 9efc361..cc6c447 100644 --- a/src/pages/IndustryDetail.jsx +++ b/src/pages/IndustryDetail.jsx @@ -4,6 +4,7 @@ import { useParams } from 'react-router-dom' import { industries } from '@/data/industries' import { Link } from 'react-router-dom' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/Card' +import RelatedLinks from '@/components/content/RelatedLinks' import { AlertCircle, ArrowLeft, ArrowRight, Building2, CheckCircle2 } from 'lucide-react' const IndustryDetail = () => { @@ -133,6 +134,13 @@ const IndustryDetail = () => {
{industry.name}
+