mirror of
https://github.com/VSCodium/icons.git
synced 2025-12-09 19:43:16 -06:00
16 lines
366 B
TypeScript
16 lines
366 B
TypeScript
import { Head, Html, Main, NextScript } from "next/document"
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html lang="en">
|
|
<Head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
</Head>
|
|
<body className="min-h-screen bg-slate-50 font-sans text-slate-900 antialiased">
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|