import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter, } from "@/components/ui/dialog"; import { Button } from "@/components/ui/button"; import { CheckCircle, Sparkles } from "lucide-react"; interface DyadProSuccessDialogProps { isOpen: boolean; onClose: () => void; } export function DyadProSuccessDialog({ isOpen, onClose, }: DyadProSuccessDialogProps) { return (
Dyad Pro Enabled

Congrats! Dyad Pro is now enabled in the app.

You have access to leading AI models.

You can click the Pro button at the top to access the settings at any time.

); }