Queue-North-Website/src/pages/ServiceDetail.jsx

174 lines
7.4 KiB
React
Raw Normal View History

import { Helmet } from 'react-helmet-async'
import { useParams } from 'react-router-dom'
2026-05-12 01:04:17 -05:00
import { services } from '@/data/services'
import { Link } from 'react-router-dom'
2026-05-12 01:04:17 -05:00
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/Card'
import { ArrowRight, CheckCircle2, Zap } from 'lucide-react'
const serviceImageAlt = {
'contact-center': 'Modern contact center operations dashboard and support team',
'infrastructure-cabling': 'Close-up of network cabling connected to infrastructure equipment',
'wireless-access': 'Wireless coverage planning map used for enterprise Wi-Fi design',
}
2026-05-12 01:04:17 -05:00
const ServiceDetail = () => {
const { slug } = useParams()
const service = services.find(s => s.id === slug)
2026-05-12 01:04:17 -05:00
if (!service) {
return (
<section className="bg-background py-16 md:py-24">
<Helmet>
<title>Service Not Found | Queue North Technologies</title>
<meta name="description" content="The service page you are looking for does not exist." />
</Helmet>
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="text-center">
<h1 className="text-3xl font-bold text-primary-navy mb-4">Service Not Found</h1>
<p className="text-xl text-soft-text mb-8">The service you're looking for doesn't exist.</p>
<Link to="/services" className="text-primary-navy hover:underline">
Back to Services
</Link>
</div>
2026-05-12 01:04:17 -05:00
</div>
</section>
2026-05-12 01:04:17 -05:00
)
}
const serviceTitle = `${service.name} | Queue North Technologies`
const serviceDesc = service.shortDesc || `Learn about ${service.name} from Queue North Technologies.`
const serviceUrl = `https://queuenorth.com/services/${service.id}`
const hasServiceImage = Boolean(service.image)
const serviceDetailLd = {
'@context': 'https://schema.org',
'@type': 'Service',
name: service.name,
description: service.shortDesc,
provider: {
'@type': 'Organization',
name: 'Queue North Technologies',
url: 'https://queuenorth.com',
},
areaServed: {
'@type': 'Place',
name: 'United States',
},
}
2026-05-12 01:04:17 -05:00
return (
<>
<Helmet>
<title>{serviceTitle}</title>
<meta name="description" content={serviceDesc} />
<meta property="og:title" content={serviceTitle} />
<meta property="og:description" content={serviceDesc} />
<meta property="og:url" content={serviceUrl} />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://queuenorth.com/assets/og-image.png" />
<meta property="og:site_name" content="Queue North Technologies" />
<script type="application/ld+json">{JSON.stringify(serviceDetailLd)}</script>
</Helmet>
2026-05-12 01:04:17 -05:00
{/* Page Hero */}
<section className="bg-background py-14 md:py-20">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className={hasServiceImage ? 'grid grid-cols-1 lg:grid-cols-[0.9fr_1.1fr] gap-10 lg:gap-14 items-center' : 'max-w-3xl'}>
<div>
<Link to="/services" className="mb-5 inline-flex text-sm font-semibold text-primary-blue hover:text-primary-navy">
Services
</Link>
<h1 className="text-4xl md:text-5xl font-bold text-primary-navy mb-6">{service.name}</h1>
<p className="text-xl text-soft-text max-w-3xl leading-relaxed">{service.shortDesc}</p>
<div className="mt-8">
<Link to="/contact" className="inline-flex h-11 items-center justify-center gap-2 rounded-md bg-primary-navy px-5 text-sm font-semibold text-white hover:bg-primary-navy-dark transition-colors">
Request This Service
<ArrowRight className="h-4 w-4" aria-hidden="true" />
</Link>
</div>
</div>
{hasServiceImage && (
<div className="relative overflow-hidden rounded-md border border-border bg-white shadow-sm">
<img
src={service.image}
alt={serviceImageAlt[service.id] || `${service.name} service visual`}
className="h-72 w-full object-cover md:h-96 lg:h-[28rem]"
/>
<div className="absolute inset-x-0 bottom-0 h-24 bg-gradient-to-t from-primary-navy/55 to-transparent" />
</div>
)}
</div>
</div>
2026-05-12 01:04:17 -05:00
</section>
{/* Main Content */}
<section className="bg-background py-16">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="grid grid-cols-1 lg:grid-cols-3 gap-12">
{/* Left Column - Main Content */}
<div className="lg:col-span-2">
<div className="mb-12">
<h2 className="text-2xl font-bold text-primary-navy mb-4">What This Solves</h2>
<p className="text-lg text-soft-text mb-6 leading-relaxed">
{service.fullDesc}
</p>
</div>
2026-05-12 01:04:17 -05:00
<div className="mb-12">
<h2 className="text-2xl font-bold text-primary-navy mb-4">Key Benefits</h2>
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
{service.benefits.map((benefit, index) => (
<div key={index} className="flex items-start gap-3">
<CheckCircle2 className="h-6 w-6 text-primary-blue flex-shrink-0 mt-1" aria-hidden="true" />
<span className="text-lg text-text">{benefit}</span>
</div>
))}
2026-05-12 01:04:17 -05:00
</div>
</div>
2026-05-12 01:04:17 -05:00
<div className="mb-12">
<h2 className="text-2xl font-bold text-primary-navy mb-4">Ideal For</h2>
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
{service.idealFor.map((item, index) => (
<div key={index} className="flex items-start gap-3">
<Zap className="h-6 w-6 text-primary-blue flex-shrink-0 mt-1" aria-hidden="true" />
<span className="text-lg text-text">{item}</span>
</div>
))}
2026-05-12 01:04:17 -05:00
</div>
</div>
2026-05-12 01:04:17 -05:00
</div>
{/* Right Column - Sidebar */}
<div className="lg:col-span-1">
<Card className="sticky top-24">
<CardHeader>
<CardTitle className="text-primary-navy">Quick Info</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div>
<h3 className="font-semibold text-text mb-2">Service</h3>
<p className="text-soft-text">{service.name}</p>
</div>
<div className="pt-4 border-t border-border">
<Link to="/contact" className="block w-full bg-primary-navy text-white px-4 py-3 rounded-md text-center font-medium hover:bg-primary-navy-dark transition-colors">
Request This Service
</Link>
</div>
<div className="pt-2">
<Link to="/services" className="text-primary-navy hover:underline">
Back to Services
</Link>
</div>
</CardContent>
</Card>
</div>
</div>
2026-05-12 01:04:17 -05:00
</div>
</section>
</>
2026-05-12 01:04:17 -05:00
)
}
export default ServiceDetail