project setup
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import Link from "next/link";
|
||||
|
||||
import Button from "@/components/Button";
|
||||
|
||||
interface GetStartedButtonProps {
|
||||
onClick?: () => void;
|
||||
}
|
||||
|
||||
const GetStartedButton = ({ onClick }: GetStartedButtonProps) => {
|
||||
return (
|
||||
<Link href="/get-started" onClick={onClick}>
|
||||
<Button text="Get Started" />
|
||||
</Link>
|
||||
);
|
||||
};
|
||||
|
||||
export default GetStartedButton;
|
||||
Reference in New Issue
Block a user