Evo.Auth/apps/web/pages/index.jsx
2023-08-01 15:23:30 +03:00

23 lines
410 B
JavaScript

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