1
Fork 0
mirror of https://github.com/Steffo99/distributed-arcade-viewer.git synced 2024-11-22 16:04:23 +00:00
distributed-arcade-viewer/pages/_document.tsx

23 lines
849 B
TypeScript
Raw Normal View History

2023-10-03 23:50:32 +00:00
// @ts-nocheck
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>
)
}