add button for staring the project on github
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 55s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 55s
This commit is contained in:
16
src/app/components/rediect-button.tsx
Normal file
16
src/app/components/rediect-button.tsx
Normal file
@ -0,0 +1,16 @@
|
||||
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>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user