Components
Loading preview...
Here is Dialog component
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/dialog-1"use client";
import Dialog01 from "@/components/ui/dialog-1";
export default function DemoPage() {
return (
<div className="fixed inset-0 flex justify-center items-center bg-gray-50 dark:bg-gray-900">
<div className="w-[100px] h-[100px]">
<Dialog01 />
</div>
</div>
);
}