import SEO from '@/components/SEO' import { buildBreadcrumbLd } from '@/lib/seo' import { AlertCircle, ArrowRight, CheckCircle2, Clock3, ExternalLink, LifeBuoy, ShieldCheck, TicketCheck, Wrench } from 'lucide-react' const portalLinks = [ { label: 'Sign in', href: 'https://queuenorthtechnologiesllc.zohodesk.com/portal/en/signin', }, { label: 'Create account', href: 'https://queuenorthtechnologiesllc.zohodesk.com/portal/en/signup', }, ] const responseTargets = [ { priority: 'Low', context: 'General request', target: '24 hours' }, { priority: 'Medium', context: 'Standard issue', target: '4 hours' }, { priority: 'High', context: 'Critical outage', target: '1 hour' }, ] const supportedSystems = [ '8x8 Communications Platform', 'Cisco Webex', 'VoIP Phone Systems', 'Contact Center Solutions', 'Network Infrastructure', 'Cloud Migration Support', ] const Support = () => { return ( <> {/* Page Hero */}
Support team managing communications requests

Get help without getting handed off.

Sign in to the client portal to manage tickets, create a new support request, or escalate a service-impacting issue through one clear path.

Choose the right path

Existing client

Sign in to create, update, and track support tickets.

Active outage

Call (321) 730-8020

Planned work

Use the portal for moves, adds, changes, and deployments.

{/* Support Portal */}

Response Targets

{responseTargets.map((item) => (

{item.priority}

{item.target}

{item.context}

))}

Covered Systems

    {supportedSystems.map((item) => (
  • ))}

Client Portal

Manage support in Zoho Desk.

Existing clients can sign in to submit new tickets, review open items, and keep communications tied to the right account.

{[ 'Submit and track support tickets', 'Add updates without starting a new thread', 'Keep request history tied to your account', ].map((item) => (
))}

Service-impacting issue?

Call Queue North directly for urgent outages or time-sensitive escalations.

(321) 730-8020
) } export default Support