import Login from 'components/Login'; import getConfig from 'next/config'; import Head from 'next/head'; const { publicRuntimeConfig: config } = getConfig(); function PageHead() { return ( {`Вход - ${config.description}`} ); } export default function Home() { return ( <> ); }