Components
Loading preview...
GSAP Recreation Of Aceternity UI's Signup Form Components Input Components
@muntasirszn
npx shadcn@latest add https://21st.dev/r/muntasirszn/inputimport { Input } from "@/components/ui/input";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<Input name="email" placeholder="john.doe@gmail.com" />
</div>
);
};
export { DemoOne };