Components
Loading preview...
here is minimalistic login pag
@ephraimduncan
npx shadcn@latest add https://21st.dev/r/ephraimduncan/login-1"use client";
import Login01 from "@/components/ui/login-1";
export default function DemoPage() {
return (
<div className="flex justify-center items-center h-screen bg-gray-50 dark:bg-gray-900">
<Login01 />
</div>
);
}