mirror of
https://github.com/skidoodle/albert.lol.git
synced 2026-04-29 03:37:41 +02:00
57acf16cf5
Signed-off-by: skidoodle <contact@albert.lol>
22 lines
646 B
TypeScript
22 lines
646 B
TypeScript
import { Html, Head, Main, NextScript } from 'next/document';
|
|
|
|
export default function Document () {
|
|
return (
|
|
<Html lang='en'>
|
|
<Head>
|
|
<link rel='preconnect' href='https://vitals.vercel-insights.com' />
|
|
<meta name='title' content='albert' />
|
|
<meta name='og:title' content='albert' />
|
|
<meta name='description' content='sysadmin' />
|
|
<meta name='og:description' content='sysadmin' />
|
|
<meta name='theme-color' content='#000000' />
|
|
<meta property='og:image' content='/favicon.ico' />
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|