Frontend/src/app/components/rediect-button.tsx
Liam 07ecdaaf78
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 55s
add button for staring the project on github
2024-04-16 19:27:48 +01:00

17 lines
325 B
TypeScript

import Link from "next/link";
type ButtonProps = {
title: string;
url: string;
};
export function RedirectButton({ title, url }: ButtonProps) {
return (
<div className="w-fit rounded-lg">
<Link href={url}>
<p className="hover:text-primary transition-all">{title}</p>
</Link>
</div>
);
}