import { Link } from 'react-router-dom' import type { Guide } from '@/data/guides' interface GuideCardProps { guide: Guide } export function GuideCard({ guide }: GuideCardProps) { const Icon = guide.icon return (

{guide.title}

{guide.summary}

{guide.sections.length} {guide.sections.length === 1 ? 'section' : 'sections'}
) }