import { useParams } from 'react-router-dom' import { services } from '@/data/services' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/Card' const ServiceDetail = () => { const { slug } = useParams() const service = services.find(s => s.id === slug) if (!service) { return (
{service.shortDesc}
{service.fullDesc}
{service.name}
{service.id.replace('-', ' ')}