import Link from "next/link"; import { ReactNode } from "react"; export function CardLink({ href, children, }: { href: string; children: ReactNode; }) { return ( {children} ); }