Frontend/src/app/components/rediect-button.tsx

17 lines
341 B
TypeScript
Raw Normal View History

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">
<p className="hover:text-primary transition-all">{title}</p>
</Link>
</div>
);
}