mirror of
https://github.com/skidoodle/erettsegi-browser.git
synced 2025-02-15 05:39:15 +01:00
17 lines
481 B
TypeScript
17 lines
481 B
TypeScript
import { Html, Head, Main, NextScript } from 'next/document'
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html lang="hu">
|
|
<Head>
|
|
<meta name="theme-color" content="#121212" />
|
|
<meta name="title" content="Érettségi kereső" />
|
|
<meta name="author" content="albert" />
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|