2026-05-17 20:03:42 -05:00
import { Helmet } from 'react-helmet-async'
2026-05-12 01:04:17 -05:00
import { Button } from '@/components/ui/Button'
2026-05-17 16:39:54 -05:00
import { Card , CardContent , CardDescription , CardHeader , CardTitle } from '@/components/ui/Card'
2026-05-12 01:04:17 -05:00
import { services } from '@/data/services'
2026-05-12 02:31:23 -05:00
import { industries } from '@/data/industries'
2026-05-17 21:44:48 -05:00
import { Link } from 'react-router-dom'
2026-05-17 22:05:08 -05:00
import { MapPin , MessageCircle , Users , LifeBuoy , GraduationCap , Link as LinkIcon , Wifi , Network , Headphones , UserCheck , Activity , ShieldCheck , HeartPulse , ShoppingCart , Factory , Landmark , Building2 , Award } from 'lucide-react'
2026-05-17 15:41:22 -05:00
// Icon map for industries - converts icon string to lucide component
const industryIcons = {
'heart-pulse' : HeartPulse ,
'shopping-cart' : ShoppingCart ,
factory : Factory ,
landmark : Landmark ,
}
2026-05-12 01:04:17 -05:00
const Home = ( ) => {
2026-05-17 20:03:42 -05:00
const organizationLd = {
'@context' : 'https://schema.org' ,
'@type' : 'Organization' ,
name : 'Queue North Technologies' ,
url : 'https://queuenorth.com' ,
2026-05-17 22:01:27 -05:00
logo : 'https://queuenorth.com/assets/og-image.png' ,
2026-05-17 20:44:18 -05:00
description : 'Business communications and IT partner. 8x8 Certified Partner, Veteran Owned, 25+ years of service.' ,
2026-05-17 20:03:42 -05:00
address : {
'@type' : 'PostalAddress' ,
addressCountry : 'US' ,
} ,
contactPoint : {
'@type' : 'ContactPoint' ,
2026-05-17 20:44:18 -05:00
telephone : '+1-321-730-8020' ,
2026-05-17 20:03:42 -05:00
contactType : 'customer service' ,
areaServed : 'US' ,
} ,
sameAs : [ ] ,
}
const localBusinessLd = {
'@context' : 'https://schema.org' ,
'@type' : 'LocalBusiness' ,
'@id' : 'https://queuenorth.com/#business' ,
name : 'Queue North Technologies' ,
2026-05-17 22:01:27 -05:00
image : 'https://queuenorth.com/assets/og-image.png' ,
2026-05-17 20:03:42 -05:00
url : 'https://queuenorth.com' ,
2026-05-17 20:44:18 -05:00
telephone : '+1-321-730-8020' ,
2026-05-17 20:03:42 -05:00
email : 'info@queuenorth.com' ,
address : {
'@type' : 'PostalAddress' ,
addressCountry : 'US' ,
} ,
priceRange : '$$' ,
openingHoursSpecification : {
'@type' : 'OpeningHoursSpecification' ,
dayOfWeek : [ 'Monday' , 'Tuesday' , 'Wednesday' , 'Thursday' , 'Friday' ] ,
opens : '08:00' ,
closes : '18:00' ,
} ,
}
2026-05-12 01:04:17 -05:00
return (
2026-05-17 17:11:29 -05:00
< >
2026-05-17 20:03:42 -05:00
< Helmet >
2026-05-17 20:44:18 -05:00
< title > Queue North Technologies | Business Communications & IT Partner < / title >
< meta name = "description" content = "Queue North Technologies is a veteran-owned 8x8 Certified Partner providing business phone systems, UCaaS, contact center, IT support, and networking solutions. 25+ years of proven reliability." / >
< meta property = "og:title" content = "Queue North Technologies | Business Communications & IT Partner" / >
< meta property = "og:description" content = "Veteran-owned 8x8 Certified Partner. Business phone, UCaaS, contact center, IT support, and networking solutions. 25+ years of proven reliability." / >
2026-05-17 20:03:42 -05:00
< meta property = "og:url" content = "https://queuenorth.com" / >
< meta property = "og:type" content = "website" / >
2026-05-17 22:01:27 -05:00
< meta property = "og:image" content = "https://queuenorth.com/assets/og-image.png" / >
2026-05-17 20:03:42 -05:00
< meta property = "og:site_name" content = "Queue North Technologies" / >
< script type = "application/ld+json" > { JSON . stringify ( organizationLd ) } < / script >
< script type = "application/ld+json" > { JSON . stringify ( localBusinessLd ) } < / script >
< / Helmet >
2026-05-12 01:04:17 -05:00
{ /* Hero Section */ }
2026-05-17 14:44:34 -05:00
< section className = "bg-gradient-to-br from-primary-navy via-primary-navy to-teal-900 text-white py-16 md:py-24" >
2026-05-17 17:11:29 -05:00
< div className = "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8" >
2026-05-17 15:33:30 -05:00
< div className = "grid grid-cols-1 md:grid-cols-2 gap-8 md:gap-12 items-center" >
< div className = "flex flex-col gap-6 md:gap-8" >
< h1 className = "text-4xl md:text-5xl lg:text-6xl font-bold" >
2026-05-17 14:44:34 -05:00
Reliable Business Communications — Without the Runaround
2026-05-12 01:04:17 -05:00
< / h1 >
2026-05-17 15:33:30 -05:00
< p className = "text-xl md:text-2xl text-section-alt max-w-2xl" >
2026-05-17 14:44:34 -05:00
We handle your phones , internet , and IT so you can focus on running your business . 8 x8 Certified Partner with 25 + years of proven reliability .
2026-05-12 01:04:17 -05:00
< / p >
< div className = "flex flex-col sm:flex-row gap-4" >
2026-05-17 21:44:48 -05:00
< Link to = "/contact" className = "inline-flex items-center justify-center rounded-md text-sm font-medium h-10 px-4 py-2 bg-white text-primary-navy hover:bg-gray-100 transition-colors" >
2026-05-17 14:44:34 -05:00
Schedule Consultation
2026-05-17 21:44:48 -05:00
< / Link >
< Link to = "/services" className = "inline-flex items-center justify-center rounded-md text-sm font-medium h-10 px-4 py-2 border border-white text-white hover:bg-white/10 transition-colors" >
2026-05-17 14:44:34 -05:00
View Services
2026-05-17 21:44:48 -05:00
< / Link >
2026-05-12 01:04:17 -05:00
< / div >
2026-05-17 15:33:30 -05:00
< div className = "flex flex-wrap gap-4" >
2026-05-17 14:44:34 -05:00
< div className = "flex items-center gap-2 px-4 py-2 bg-white/20 rounded-lg text-sm font-medium" >
2026-05-17 20:03:42 -05:00
< img src = "/assets/8x8_Logo_White.svg" alt = "8x8 Certified Partner logo" className = "h-5 w-5" / >
2026-05-17 14:44:34 -05:00
< span > 8 x8 Certified Partner < / span >
< / div >
< div className = "flex items-center gap-2 px-4 py-2 bg-white/20 rounded-lg text-sm font-medium" >
2026-05-17 22:05:08 -05:00
< Award className = "h-5 w-5 text-primary-navy" / >
2026-05-17 14:44:34 -05:00
< span > Veteran Owned < / span >
< / div >
< div className = "flex items-center gap-2 px-4 py-2 bg-white/20 rounded-lg text-sm font-numeric" >
< span > 25 + < / span >
< span className = "text-sm" > Years Experience < / span >
< / div >
< div className = "flex items-center gap-2 px-4 py-2 bg-white/20 rounded-lg text-sm font-medium" >
< span > SMB to Enterprise < / span >
< / div >
2026-05-12 01:04:17 -05:00
< / div >
< / div >
2026-05-17 15:33:30 -05:00
< div className = "md:order-2 md:mt-0" >
2026-05-12 01:04:17 -05:00
< div className = "relative rounded-xl overflow-hidden shadow-2xl" >
< img
src = "/assets/hero-tech.png"
2026-05-17 20:03:42 -05:00
alt = "Business communications and IT infrastructure solutions by Queue North Technologies"
2026-05-12 01:04:17 -05:00
className = "w-full h-full object-cover"
/ >
< div className = "absolute inset-0 bg-gradient-to-t from-primary-navy/50 to-transparent" / >
< / div >
< / div >
< / div >
< / div >
< / section >
{ /* Trust Bar */ }
< section className = "bg-section-alt py-12" >
2026-05-17 17:11:29 -05:00
< div className = "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8" >
2026-05-12 01:04:17 -05:00
< div className = "text-center mb-8" >
< h2 className = "text-2xl font-semibold text-primary-navy mb-2" > Trusted Partner < / h2 >
2026-05-17 15:28:12 -05:00
< p className = "text-soft-text" > 8 x8 and Cisco Certified Partner with proven expertise < / p >
2026-05-12 01:04:17 -05:00
< / div >
< div className = "flex flex-wrap justify-center items-center gap-8 md:gap-16 opacity-70" >
< div className = "flex items-center gap-3" >
2026-05-17 21:41:01 -05:00
< img src = "/assets/8x8_Logo_White.svg" alt = "8x8 Certified Partner logo" className = "h-8 brightness-0 invert" / >
2026-05-12 01:04:17 -05:00
< span className = "font-medium" > 8 x8 Certified Partner < / span >
< / div >
2026-05-17 15:28:12 -05:00
< div className = "flex items-center gap-3" >
2026-05-17 22:05:08 -05:00
< ShieldCheck className = "h-8 w-8 text-primary-navy" / >
2026-05-17 15:28:12 -05:00
< span className = "font-medium" > Cisco Certified Partner < / span >
< / div >
2026-05-12 01:04:17 -05:00
< div className = "flex items-center gap-3" >
2026-05-17 22:05:08 -05:00
< Award className = "h-8 w-8 text-primary-navy" / >
2026-05-12 01:04:17 -05:00
< span className = "font-medium" > Veteran Owned < / span >
< / div >
< / div >
< / div >
< / section >
2026-05-17 22:05:08 -05:00
{ /* Trust Bar - Partner Certifications */ }
2026-05-17 17:01:08 -05:00
< section className = "bg-primary-navy py-16 md:py-24" >
2026-05-17 17:11:29 -05:00
< div className = "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center" >
2026-05-17 22:05:08 -05:00
< h2 className = "text-2xl md:text-3xl font-bold text-white mb-8" > Trusted Partners < / h2 >
< div className = "flex flex-wrap justify-center items-center gap-8 md:gap-16 opacity-90" >
< div className = "flex items-center gap-3" >
< img src = "/assets/8x8_Logo_White.svg" alt = "8x8 Certified Partner" className = "h-10 w-auto" / >
< span className = "font-medium text-white" > 8 x8 Certified Partner < / span >
< / div >
< div className = "flex items-center gap-3" >
< ShieldCheck className = "h-10 w-10 text-primary-cyan flex-shrink-0" / >
< span className = "font-medium text-white" > Cisco Certified Partner < / span >
< / div >
< div className = "flex items-center gap-3" >
< Award className = "h-10 w-10 text-primary-cyan flex-shrink-0" / >
< span className = "font-medium text-white" > Veteran Owned < / span >
2026-05-17 17:01:08 -05:00
< / div >
< / div >
< / div >
< / section >
2026-05-17 14:45:27 -05:00
{ /* Trust Signals Section */ }
< section className = "bg-section-alt py-16 md:py-24" >
2026-05-17 17:11:29 -05:00
< div className = "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8" >
2026-05-17 14:45:27 -05:00
< div className = "text-center mb-12" >
< h2 className = "text-2xl md:text-3xl font-semibold text-primary-navy mb-2" > Trusted by Thousands of Businesses < / h2 >
2026-05-17 15:07:28 -05:00
< p className = "text-xl text-soft-text max-w-2xl mx-auto mb-6" >
2026-05-17 14:45:27 -05:00
Why Queue North ? Proven reliability , decades of experience , and unwavering support
< / p >
2026-05-17 15:07:28 -05:00
< div >
2026-05-17 21:44:48 -05:00
< Link to = "/contact" className = "inline-flex items-center justify-center rounded-md text-sm font-medium h-10 px-4 py-2 bg-primary-navy text-white hover:bg-primary-navy-dark transition-colors" >
2026-05-17 15:07:28 -05:00
Request Consultation
2026-05-17 21:44:48 -05:00
< / Link >
2026-05-17 15:07:28 -05:00
< / div >
2026-05-17 14:45:27 -05:00
2026-05-17 21:44:48 -05:00
{ /* 8x8 Certified Partner */ }
< div className = "grid grid-cols-1 md:grid-cols-3 gap-6 mb-12" >
< div className = "bg-white rounded-xl p-8 shadow-lg hover:shadow-xl transition-shadow" >
< div className = "flex items-center gap-4 mb-4" >
< div className = "bg-primary-navy text-white p-3 rounded-lg" >
< img src = "/assets/8x8_Logo_White.svg" alt = "8x8 Certified Partner logo" className = "h-8 w-auto" / >
< / div >
< div >
< h3 className = "text-lg font-semibold text-primary-navy" > 8 x8 Certified Partner < / h3 >
< p className = "text-sm text-soft-text" > Certification # 25432 < / p >
< / div >
2026-05-17 14:45:27 -05:00
< / div >
2026-05-17 21:44:48 -05:00
< p className = "text-sm text-soft-text leading-relaxed mb-4" >
Queue North holds 8 x8 Sales , Sales Engineer , Build , Deployment , and Support Certifications — enabling full lifecycle delivery .
< / p >
< div className = "flex flex-wrap gap-2" >
{ [ 'Sales' , 'Sales Engineer' , 'Build' , 'Deployment' , 'Support' ] . map ( ( cert ) => (
< span key = { cert } className = "inline-flex items-center gap-1.5 px-3 py-1.5 bg-teal-50 text-teal-700 text-xs font-medium rounded-md border border-teal-100" >
< span className = "w-1.5 h-1.5 rounded-full bg-teal-500" / >
{ cert }
< / span >
) ) }
2026-05-17 14:45:27 -05:00
< / div >
< / div >
2026-05-17 21:44:48 -05:00
{ /* Cisco Partnership */ }
< div className = "bg-white rounded-xl p-8 shadow-lg hover:shadow-xl transition-shadow" >
< div className = "flex items-center gap-4 mb-4" >
< div className = "bg-primary-navy text-white p-3 rounded-lg" >
2026-05-17 22:05:08 -05:00
< ShieldCheck className = "w-6 h-6" / >
2026-05-17 21:44:48 -05:00
< / div >
< div >
< h3 className = "text-lg font-semibold text-primary-navy" > Cisco Certified Partner < / h3 >
< p className = "text-sm text-soft-text" > Authorized Reseller & Implementer < / p >
< / div >
2026-05-17 15:28:12 -05:00
< / div >
2026-05-17 21:44:48 -05:00
< p className = "text-sm text-soft-text leading-relaxed" >
As a Cisco Certified Partner , we deliver enterprise - grade solutions using Cisco Meraki , Cisco Webex , and Cisco Unified Communications Manager . We help businesses leverage Cisco ' s industry - leading networking and communications platforms .
< / p >
2026-05-17 15:28:12 -05:00
< / div >
2026-05-17 21:44:48 -05:00
{ /* Veteran Owned */ }
< div className = "bg-white rounded-xl p-8 shadow-lg hover:shadow-xl transition-shadow" >
< div className = "flex items-center gap-4 mb-4" >
< div className = "bg-primary-navy text-white p-3 rounded-lg" >
2026-05-17 22:05:08 -05:00
< Award className = "w-6 h-6" / >
2026-05-17 21:44:48 -05:00
< / div >
< div >
< h3 className = "text-lg font-semibold text-primary-navy" > Veteran Owned < / h3 >
< p className = "text-sm text-soft-text" > VCERT Verified ( VOSB # 12847 ) < / p >
< / div >
2026-05-17 14:45:27 -05:00
< / div >
2026-05-17 21:44:48 -05:00
< p className = "text-sm text-soft-text leading-relaxed" >
Founded by military veterans , we bring discipline , reliability , and service - first values to every client relationship . Your success is our mission .
< / p >
2026-05-17 14:45:27 -05:00
< / div >
2026-05-17 21:44:48 -05:00
{ /* Years Experience */ }
< div className = "bg-white rounded-xl p-8 shadow-lg hover:shadow-xl transition-shadow" >
< div className = "flex items-center gap-4 mb-4" >
< div className = "bg-teal-600 text-white p-3 rounded-lg" >
< span className = "font-numeric text-3xl" > 25 + < / span >
< / div >
< div >
< h3 className = "text-lg font-semibold text-primary-navy" > 25 + Years Experience < / h3 >
< p className = "text-sm text-soft-text" > 1999 – Present < / p >
< / div >
2026-05-17 14:45:27 -05:00
< / div >
2026-05-17 21:44:48 -05:00
< p className = "text-sm text-soft-text leading-relaxed" >
We ' ve been helping businesses navigate communications challenges since before cloud telephony existed . Our experience means fewer surprises , faster solutions .
< / p >
2026-05-17 14:45:27 -05:00
< / div >
< / div >
2026-05-17 21:44:48 -05:00
{ /* Metrics Grid */ }
< div className = "grid grid-cols-2 md:grid-cols-4 gap-6" >
< div className = "text-center" >
< div className = "font-numeric text-4xl md:text-5xl text-primary-navy mb-2" > 99.99 % < / div >
< div className = "text-sm text-soft-text uppercase tracking-wide font-medium" > Uptime Guarantee < / div >
< / div >
< div className = "text-center" >
< div className = "font-numeric text-4xl md:text-5xl text-primary-navy mb-2" > & lt ; 15 m < / div >
< div className = "text-sm text-soft-text uppercase tracking-wide font-medium" > Avg . Response < / div >
< / div >
< div className = "text-center" >
< div className = "font-numeric text-4xl md:text-5xl text-primary-navy mb-2" > 24 / 7 < / div >
< div className = "text-sm text-soft-text uppercase tracking-wide font-medium" > Support < / div >
< / div >
< div className = "text-center" >
< div className = "font-numeric text-4xl md:text-5xl text-primary-navy mb-2" > 100 % < / div >
< div className = "text-sm text-soft-text uppercase tracking-wide font-medium" > Satisfaction < / div >
< / div >
2026-05-17 14:45:27 -05:00
< / div >
< / div >
< / div >
< / section >
2026-05-12 01:04:17 -05:00
{ /* Services Section */ }
< section className = "bg-background py-16 md:py-24" >
2026-05-17 17:11:29 -05:00
< div className = "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8" >
2026-05-12 01:04:17 -05:00
< div className = "text-center mb-12" >
2026-05-17 14:49:01 -05:00
< h2 className = "text-3xl md:text-4xl font-bold text-primary-navy mb-4" > What We Handle < / h2 >
2026-05-12 01:04:17 -05:00
< p className = "text-xl text-soft-text max-w-2xl mx-auto" >
2026-05-17 14:49:01 -05:00
From phones to firewalls , we keep your business running
2026-05-12 01:04:17 -05:00
< / p >
< / div >
< div className = "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6" >
{ services . map ( ( service ) => (
< Card key = { service . id } className = "hover:shadow-md transition-shadow cursor-pointer" >
< CardHeader >
2026-05-17 14:49:01 -05:00
< div className = "flex items-center gap-3 mb-2" >
< div className = "bg-primary-navy/10 p-2 rounded-lg" >
{ service . icon === 'message-circle' && < MessageCircle className = "w-6 h-6 text-primary-navy" / > }
{ service . icon === 'users' && < Users className = "w-6 h-6 text-primary-navy" / > }
{ service . icon === 'life-buoy' && < LifeBuoy className = "w-6 h-6 text-primary-navy" / > }
{ service . icon === 'graduation-cap' && < GraduationCap className = "w-6 h-6 text-primary-navy" / > }
{ service . icon === 'link' && < LinkIcon className = "w-6 h-6 text-primary-navy" / > }
{ service . icon === 'wifi' && < Wifi className = "w-6 h-6 text-primary-navy" / > }
{ service . icon === 'network' && < Network className = "w-6 h-6 text-primary-navy" / > }
< / div >
< CardTitle className = "text-primary-navy text-xl" > { service . name } < / CardTitle >
< / div >
< CardDescription className = "font-medium text-teal-900" > { service . homeDesc } < / CardDescription >
2026-05-12 01:04:17 -05:00
< / CardHeader >
< CardContent >
2026-05-17 15:07:28 -05:00
< div className = "flex flex-col gap-2" >
2026-05-17 21:44:48 -05:00
< Link to = { ` /services/ ${ service . id } ` } className = "text-primary-navy p-0 h-auto text-sm hover:underline" >
2026-05-17 15:07:28 -05:00
Learn more →
2026-05-17 21:44:48 -05:00
< / Link >
< Link to = "/contact" className = "inline-flex items-center justify-center rounded-md text-sm font-medium h-10 px-4 py-2 border border-primary-navy text-primary-navy hover:bg-primary-navy hover:text-white transition-colors" >
2026-05-17 15:07:28 -05:00
Request Consultation
2026-05-17 21:44:48 -05:00
< / Link >
2026-05-17 15:07:28 -05:00
< / div >
2026-05-12 01:04:17 -05:00
< / CardContent >
< / Card >
) ) }
< / div >
< / div >
< / section >
{ /* Why Queue North */ }
< section className = "bg-section-alt py-16 md:py-24" >
2026-05-17 17:11:29 -05:00
< div className = "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8" >
2026-05-12 01:04:17 -05:00
< div className = "text-center mb-12" >
< h2 className = "text-3xl md:text-4xl font-bold text-primary-navy mb-4" > Why Queue North < / h2 >
2026-05-17 15:07:28 -05:00
< p className = "text-xl text-soft-text max-w-2xl mx-auto mb-6" >
2026-05-17 14:56:10 -05:00
Four concrete differentiators that set us apart
2026-05-12 01:04:17 -05:00
< / p >
2026-05-17 15:07:28 -05:00
< div >
2026-05-17 21:44:48 -05:00
< Link to = "/contact" className = "inline-flex items-center justify-center rounded-md text-sm font-medium h-10 px-4 py-2 bg-primary-navy text-white hover:bg-primary-navy-dark transition-colors" >
2026-05-17 15:07:28 -05:00
Request Consultation
2026-05-17 21:44:48 -05:00
< / Link >
2026-05-17 15:07:28 -05:00
< / div >
2026-05-12 01:04:17 -05:00
< / div >
2026-05-17 14:56:10 -05:00
< div className = "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6" >
2026-05-12 01:04:17 -05:00
< Card >
2026-05-17 14:56:10 -05:00
< CardContent className = "pt-6" >
< div className = "bg-primary-navy text-white p-3 rounded-lg mb-4 inline-flex" >
< Headphones className = "w-6 h-6" / >
< / div >
< h3 className = "text-lg font-semibold text-primary-navy mb-2" > Responsiveness < / h3 >
< p className = "text-sm text-soft-text" >
When you call , a human answers — not a ticket queue , not a chatbot . Real support from people who know your system .
< / p >
< / CardContent >
< / Card >
< Card >
< CardContent className = "pt-6" >
< div className = "bg-primary-navy text-white p-3 rounded-lg mb-4 inline-flex" >
< UserCheck className = "w-6 h-6" / >
< / div >
< h3 className = "text-lg font-semibold text-primary-navy mb-2" > Direct Support < / h3 >
< p className = "text-sm text-soft-text" >
No account managers between you and the engineer solving your problem . You talk to the team that designed and deployed your system .
2026-05-12 01:04:17 -05:00
< / p >
< / CardContent >
< / Card >
< Card >
2026-05-17 14:56:10 -05:00
< CardContent className = "pt-6" >
< div className = "bg-primary-navy text-white p-3 rounded-lg mb-4 inline-flex" >
< Activity className = "w-6 h-6" / >
< / div >
< h3 className = "text-lg font-semibold text-primary-navy mb-2" > Proactive Monitoring < / h3 >
< p className = "text-sm text-soft-text" >
We catch problems before you notice them . 24 / 7 monitoring means we ' re often resolving issues before your phone rings .
2026-05-12 01:04:17 -05:00
< / p >
< / CardContent >
< / Card >
< Card >
2026-05-17 14:56:10 -05:00
< CardContent className = "pt-6" >
< div className = "bg-primary-navy text-white p-3 rounded-lg mb-4 inline-flex" >
< ShieldCheck className = "w-6 h-6" / >
< / div >
< h3 className = "text-lg font-semibold text-primary-navy mb-2" > Vendor Neutrality < / h3 >
< p className = "text-sm text-soft-text" >
2026-05-17 15:28:12 -05:00
As an 8 x8 and Cisco Certified Partner , we recommend what works best for you — not what pays the highest commission . We 've tested the alternatives so you don' t have to .
2026-05-12 01:04:17 -05:00
< / p >
< / CardContent >
< / Card >
< / div >
< / div >
< / section >
{ /* Industries Section */ }
< section className = "bg-background py-16 md:py-24" >
2026-05-17 17:11:29 -05:00
< div className = "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8" >
2026-05-12 01:04:17 -05:00
< div className = "text-center mb-12" >
< h2 className = "text-3xl md:text-4xl font-bold text-primary-navy mb-4" > Industries We Serve < / h2 >
< p className = "text-xl text-soft-text max-w-2xl mx-auto" >
Tailored solutions for healthcare , retail , manufacturing , and more
< / p >
< / div >
< div className = "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6" >
2026-05-17 15:41:22 -05:00
{ industries . map ( ( industry ) => {
2026-05-17 21:41:01 -05:00
const IconComponent = industryIcons [ industry . icon ] || Building2
2026-05-17 15:41:22 -05:00
return (
< Card key = { industry . id } className = "hover:shadow-md transition-shadow cursor-pointer" >
< CardContent className = "p-6" >
< div className = "w-14 h-14 rounded-xl bg-teal-50 flex items-center justify-center mb-4" >
< IconComponent className = "w-8 h-8 text-teal-600" / >
< / div >
< h3 className = "text-xl font-semibold text-primary-navy mb-3" > { industry . name } < / h3 >
2026-05-17 21:41:01 -05:00
< p className = "text-sm text-soft-text mb-4" > { industry . homeDesc || 'Industry-specific solutions designed to address your unique challenges and requirements.' } < / p >
2026-05-17 21:44:48 -05:00
< Link to = { ` /industries/ ${ industry . id } ` } className = "text-primary-navy p-0 h-auto text-sm hover:underline" >
2026-05-17 15:41:22 -05:00
Learn more →
2026-05-17 21:44:48 -05:00
< / Link >
2026-05-17 15:41:22 -05:00
< / CardContent >
< / Card >
)
} ) }
2026-05-12 01:04:17 -05:00
< / div >
< / div >
< / section >
2026-05-17 20:51:16 -05:00
{ /* Final CTA - Free Migration Offer */ }
< section className = "bg-section-alt py-16 md:py-24" >
2026-05-17 17:11:29 -05:00
< div className = "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center" >
2026-05-17 20:51:16 -05:00
< h2 className = "text-3xl md:text-4xl font-bold text-primary-navy mb-6" >
What we ' ll help you do
2026-05-12 01:04:17 -05:00
< / h2 >
2026-05-17 20:51:16 -05:00
< div className = "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 mb-8" >
< div className = "flex items-start gap-3" >
< div className = "bg-primary-navy/10 p-2 rounded-lg flex-shrink-0" >
< MapPin className = "w-5 h-5 text-primary-navy" / >
< / div >
< p className = "text-left text-sm md:text-base text-soft-text" >
Identify the features you actually need
< / p >
< / div >
< div className = "flex items-start gap-3" >
< div className = "bg-teal-500/10 p-2 rounded-lg flex-shrink-0" >
< Users className = "w-5 h-5 text-teal-600" / >
< / div >
< p className = "text-left text-sm md:text-base text-soft-text" >
Align solutions with operations and budget
< / p >
< / div >
< div className = "flex items-start gap-3" >
< div className = "bg-teal-500/10 p-2 rounded-lg flex-shrink-0" >
< Network className = "w-5 h-5 text-teal-600" / >
< / div >
< p className = "text-left text-sm md:text-base text-soft-text" >
Plan deployment , migration , and training
< / p >
< / div >
< div className = "flex items-start gap-3" >
< div className = "bg-teal-600/10 p-2 rounded-lg flex-shrink-0" >
< ShieldCheck className = "w-5 h-5 text-teal-600" / >
< / div >
< p className = "text-left text-sm md:text-base text-teal-700 font-semibold" >
Ask how you qualify for our free migration
< / p >
< / div >
< / div >
< p className = "text-lg text-soft-text mb-8 max-w-2xl mx-auto" >
Share a few details and we ' ll provide clear direction .
2026-05-12 01:04:17 -05:00
< / p >
2026-05-17 21:44:48 -05:00
< Link to = "/contact" className = "inline-flex items-center justify-center rounded-md text-sm font-medium h-10 px-6 bg-primary-navy text-white hover:bg-primary-navy-dark transition-colors" >
2026-05-12 01:04:17 -05:00
Request Consultation
2026-05-17 21:44:48 -05:00
< / Link >
2026-05-12 01:04:17 -05:00
< / div >
< / section >
2026-05-17 17:11:29 -05:00
< / >
2026-05-12 01:04:17 -05:00
)
}
export default Home