import Link from "next/link"; type ButtonProps = { title: string; url: string; openInNewTab?: boolean; }; export function RedirectButton({ title, url, openInNewTab }: ButtonProps): JSX.Element { return (

{title}

); }