import {useTranslation} from 'next-i18next'; import Link from 'next/link' function Logo(): JSX.Element { const { t } = useTranslation('common'); return (

{t('common:title')}

) } export default Logo