Components
npx shadcn@latest add https://21st.dev/r/ephraimduncan/dialog-1Loading preview...
// 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>
);
}