mirror of
https://github.com/Nezumi-2711/next-gdrive-index.git
synced 2026-09-22 13:38:38 +00:00
16 lines
305 B
TypeScript
16 lines
305 B
TypeScript
import { Html, Head, Main, NextScript } from 'next/document'
|
|
import { Inter, Merriweather, JetBrains_Mono } from "next/font/google";
|
|
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html lang='en'>
|
|
<Head />
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|