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

{title}

); }