import React from "react"; import {useTranslation} from 'next-i18next'; import usePassCount from "../src/hooks/use_pass_count"; 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')}