import type { NextPage } from 'next' import Router from 'next/router' import styles from '../styles/page.module.css' const Home: NextPage = () => { const moveToRequireAuthenticationPage = () => { Router.push('/admin') } return (

Welcome to Next.js!

Move to the administrator screen:

) } export default Home