import cn from '@/utils/classnames' import { RiLock2Fill } from '@remixicon/react' import Link from 'next/link' import { useTranslation } from 'react-i18next' type Props = { className?: string frontTextKey?: string backTextKey?: string } export const EncryptedBottom = (props: Props) => { const { t } = useTranslation() const { frontTextKey, backTextKey, className } = props return (