import { cn } from "@/lib/utils"; import NextLink from "next/link"; // TODO: we could add cva variants for the link export function Link({ children, className, ...props }: React.ComponentProps) { return ( {children} ); }