"use client"; import { Button } from "@app/components/ui/button"; import { SettingsSection, SettingsSectionBody, SettingsSectionFooter } from "@app/components/Settings"; import { ArrowRight, Settings, ShieldCheck, User } from "lucide-react"; import { useTranslations } from "next-intl"; import Link from "next/link"; type ApprovalsEmptyStateProps = { orgId: string; }; export function ApprovalsEmptyState({ orgId }: ApprovalsEmptyStateProps) { const t = useTranslations(); return (

{t("approvalsEmptyStateTitle")}

{t("approvalsEmptyStateDescription")}

{t("approvalsEmptyStateHowToTitle")}

  • {t("approvalsEmptyStateStep1Description")}
  • {t("approvalsEmptyStateStep2Description")}

{t("approvalsEmptyStatePreviewDescription")}

); }