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