Evo.Auth/apps/web/pages/index.jsx
2022-11-28 00:10:00 +03:00

23 lines
410 B
JavaScript

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