import Image from 'next/image';
import success from '@/assets/success.svg';
import { useScopedI18n } from '@/i18n/client';

export function DeletedProfileView() {
    const t = useScopedI18n('pages.profile');

    return (
        <div className="flex flex-col items-center justify-center gap-2.5 px-11 py-24">
            <Image src={success} width={48} height={48} alt="" />
            <h4 className="text-center">{t('emptyState.deleted')}</h4>
        </div>
    );
}
