import Link from 'next/link'; import { AlertTriangle } from 'lucide-react'; import { getTranslations } from 'next-intl/server'; import { Button } from '@kit/ui/button'; interface AccountNotFoundProps { title?: string; description?: string; buttonLabel?: string; } export async function AccountNotFound({ title, description, buttonLabel, }: AccountNotFoundProps = {}) { const t = await getTranslations('common'); const resolvedTitle = title ?? t('accountNotFoundCard.title'); const resolvedDescription = description ?? t('accountNotFoundCard.description'); const resolvedButtonLabel = buttonLabel ?? t('accountNotFoundCard.action'); return (

{resolvedTitle}

{resolvedDescription}

); }