import {useTranslation} from 'next-i18next'; import Head from 'next/head' import Logo from './Logo' import Link from 'next/link' interface PageProps { content: JSX.Element } function Page(props: PageProps): JSX.Element { const { t } = useTranslation('common'); return (
{t('common:title')}
{props.content}
) } export default Page