make them open in a new tab

This commit is contained in:
Lee
2024-04-16 19:29:14 +01:00
parent 07ecdaaf78
commit b939f9b807

@ -8,7 +8,7 @@ type ButtonProps = {
export function RedirectButton({ title, url }: ButtonProps) {
return (
<div className="w-fit rounded-lg">
<Link href={url}>
<Link href={url} target="_blank">
<p className="hover:text-primary transition-all">{title}</p>
</Link>
</div>