GSAP Recreation Of Aceternity UI's Signup Form Components Input Components
import { Input } from "@/components/ui/input"; const DemoOne = () => { return ( <div className="flex w-full h-screen justify-center items-center"> <Input name="email" placeholder="[email protected]" /> </div> ); }; export { DemoOne };