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