Components
Loading preview...
This is a signup page with an image on left and the form on right.
npx shadcn@latest add https://21st.dev/r/bhomikproductivitylab/sign-up-pageimport React from "react";
import { BrowserRouter } from "react-router-dom";
import { SignupPage } from "@/components/ui/sign-up-page";
export default function Demo() {
return (
<BrowserRouter>
<SignupPage />
</BrowserRouter>
);
}