import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Link } from "react-router" const SignUp = ({ heading = "Signup", logo = { // url: "https://www.shadcnblocks.com", // src: "https://deifkwefumgah.cloudfront.net/shadcnblocks/block/logos/shadcnblockscom-wordmark.svg", alt: "logo", title: "shadcnblocks.com", }, buttonText = "Create Account", signupText = "Already a user?", }) => { return (
{/* Logo */}
{logo.alt}
{heading &&

{heading}

}

{signupText}

Login
); }; export { SignUp };