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}

Key Benefits

{service.benefits.map((benefit, index) => (
{benefit}
))}

Ideal For

{service.idealFor.map((item, index) => (
{item}
))}
{/* Right Column - Sidebar */}
Quick Info

Service

{service.name}

Category

{service.id.replace('-', ' ')}

) } export default ServiceDetail