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