project setup

This commit is contained in:
Sone
2025-11-02 10:00:53 +01:00
parent 75bd171804
commit 7cb4c5345e
51 changed files with 3616 additions and 0 deletions
@@ -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;