new-personal-site/pages/_document.tsx

14 lines
257 B
TypeScript
Raw Normal View History

2024-11-28 14:50:17 +00:00
import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html lang="en">
<Head />
<body className="antialiased">
<Main />
<NextScript />
</body>
</Html>
);
}