import React from 'react'; import Head from 'next/head'; import { useTranslation } from 'next-i18next'; const Layout: React.FC<{children: React.ReactNode}> = ({ children }) => { const { t } = useTranslation('common'); return ( <> {t('title')}
{children}
); }; export default Layout;