import type { PropsWithChildren } from "react"; export default function Link({ link, children, }: PropsWithChildren<{ link: string }>) { return ( {children} ); }