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