2024-04-16 18:27:48 +00:00
|
|
|
import Link from "next/link";
|
|
|
|
|
|
|
|
type ButtonProps = {
|
|
|
|
title: string;
|
|
|
|
url: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
export function RedirectButton({ title, url }: ButtonProps) {
|
|
|
|
return (
|
|
|
|
<div className="w-fit rounded-lg">
|
2024-04-16 18:29:14 +00:00
|
|
|
<Link href={url} target="_blank">
|
2024-04-16 18:27:48 +00:00
|
|
|
<p className="hover:text-primary transition-all">{title}</p>
|
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|