mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-15 09:44:04 +00:00
21 lines
469 B
TypeScript
21 lines
469 B
TypeScript
import React from 'react'
|
|
import Document, { Html, Head, Main, NextScript } from 'next/document'
|
|
|
|
class MyDocument extends Document {
|
|
render() {
|
|
return (
|
|
<Html lang="en" className="theme-compiled scroll-smooth">
|
|
<Head />
|
|
<body
|
|
className={`antialiased bg-white dark:bg-gray-900 dark:text-white leading-base`}
|
|
>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default MyDocument
|