import Link from "next/link"; export type Props = { to: string; children?: React.ReactNode; }; export default function BlueLink({ to, children }: Props) { return ( {children} ); }