Components
Loading preview...
Modern and Beautiful full screen Signup form with HextaUI
npx shadcn@latest add https://21st.dev/r/preetsuthar17/full-screen-signup// This is a demo of a preview
// That's what users will see in the preview
import { FullScreenSignup } from "@/components/ui/full-screen-signup";
const DemoOne = () => {
return <FullScreenSignup />;
};
// IMPORTANT:
// format of the export MUST be export default { DemoOneOrOtherName }
// if you don't do this, the demo will not be shown
export default { DemoOne };