import { ChevronRight } from 'lucide-react'; import Link from 'next/link'; import { t } from '@/i18n'; import { routes } from '@/lib/site'; import { TOPICS } from '@/lib/topics'; import type { TopicSummary } from '@/lib/types'; /** Navigation to the 19 topic pages with indicator counts (n with data / n total). */ export function CountryTopicsGrid({ slug, topics }: { slug: string; topics: TopicSummary[] }) { const byId = new Map(topics.map((tp) => [tp.id, tp])); return ( ); }