2023-01-10 15:24:43 +00:00
|
|
|
import {Head, Html, Main, NextScript} from "next/document"
|
|
|
|
|
|
|
|
|
|
|
|
export default function Document() {
|
|
|
|
return (
|
|
|
|
<Html lang="en">
|
|
|
|
<Head>
|
2023-10-03 23:35:44 +00:00
|
|
|
<link rel="stylesheet" href="https://unpkg.com/@steffo/bluelib@9.0.1/dist/base.root.min.css" type="text/css" />
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/@steffo/bluelib@9.0.1/dist/classic.root.min.css" type="text/css" />
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/@steffo/bluelib@9.0.1/dist/layouts-center.root.min.css" type="text/css" />
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/@steffo/bluelib@9.0.1/dist/fonts-fira-ghpages.root.min.css" type="text/css" />
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/@steffo/bluelib@9.0.1/dist/colors-royalblue.root.min.css" type="text/css" />
|
2023-01-10 15:24:43 +00:00
|
|
|
</Head>
|
|
|
|
<body>
|
|
|
|
<Main/>
|
|
|
|
<NextScript/>
|
|
|
|
</body>
|
|
|
|
</Html>
|
|
|
|
)
|
|
|
|
}
|