"use client"; import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, } from "@/components/ui/dialog"; import { Button } from "@/components/ui/button"; import { Crown } from "lucide-react"; interface UpgradePromptProps { open: boolean; onOpenChange: (open: boolean) => void; feature: string; limitInfo?: string; } export function UpgradePrompt({ open, onOpenChange, feature, limitInfo }: UpgradePromptProps) { return (
Upgrade to Premium {feature}
{limitInfo && (

{limitInfo}

)}

Premium unlocks unlimited residences, tasks, contractors, documents, sharing, and export features.

Subscriptions are managed through the honeyDue iOS or Android app.

); }