import Link from "next/link"; import { cn } from "@/lib/utils"; export interface GuaGridItem { num: string; name: string; href: string; } export function GuaGrid({ items }: { items: GuaGridItem[] }) { return (
{items.map(({ num, name, href }) => ( {num} {name} ))}
); }