Components
Loading preview...
Here is waitlist ui component
@ayushmxxn
npx shadcn@latest add https://21st.dev/r/ayushmxxn/waitlist// This is a demo of a preview
'use client'
import { Component } from "@/components/ui/waitlist";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<Component mode="light" />
</div>
);
};
export default DemoOne;