import { getTranslations } from "next-intl/server"; import { Sparkles } from "lucide-react"; import { cn } from "@/lib/utils"; /** * L17 Pakete: quiet hint "Im Paket Profi enthalten" instead of an error page — shown when a page of a * module/feature outside the tenant's package tier was opened (redirect `/dashboard?module=profi`). * Text + icon, colours only via tokens. */ export async function ProfiHint({ className, compact = false }: { className?: string; compact?: boolean }) { const t = await getTranslations("plans"); return (
{t("profiHint.title")}
{!compact &&{t("profiHint.text")}
}