import { useParams, Link } from 'react-router-dom' import { ChevronRight, ArrowLeft } from 'lucide-react' import { guides } from '@/data/guides' import { GuideSection } from '@/components/guides/GuideSection' export default function GuideDetailPage() { const { slug } = useParams<{ slug: string }>() const guide = guides.find(g => g.slug === slug) if (!guide) { return (
The guide you're looking for doesn't exist.
Back to Guides{guide.summary}