1
Fork 0
mirror of https://github.com/Steffo99/distributed-arcade-viewer.git synced 2024-10-16 06:27:30 +00:00
distributed-arcade-viewer/pages/_document.tsx
2023-10-04 01:50:32 +02:00

22 lines
849 B
XML

// @ts-nocheck
import {Head, Html, Main, NextScript} from "next/document"
export default function Document() {
return (
<Html lang="en">
<Head>
<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" />
</Head>
<body>
<Main/>
<NextScript/>
</body>
</Html>
)
}