import { services } from '@/data/services'
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/Card'
const ServiceDetail = ({ name }) => {
const service = services.find(s => s.id === name)
if (!service) {
return (
Service Not Found
The service you're looking for doesn't exist.
Back to Services
)
}
return (
{/* Page Hero */}
{service.name}
{service.shortDesc}
{/* Main Content */}
{/* Left Column - Main Content */}
What This Solves
{service.fullDesc}
How Queue North Helps
{service.benefits.map((benefit, index) => (
))}
Ideal For
{service.idealFor.map((item, index) => (
))}
{/* Right Column - Sidebar */}
Quick Info
Category
{service.id.replace('-', ' ')}
)
}
export default ServiceDetail