Components
Loading preview...
A customizable form built on top of shadcn's input and label, with a touch of framer motion
@aceternity
npx shadcn@latest add https://21st.dev/r/aceternity/signup-formimport React from "react";
import { SignupForm } from "@/components/ui/signup-form";
export function SignupFormDemo() {
return (
<div className="h-[40rem] flex items-center justify-center">
<SignupForm />
</div>
);
}