1
Fork 0
mirror of https://github.com/Steffo99/distributed-arcade-viewer.git synced 2024-10-16 14:37:30 +00:00
distributed-arcade-viewer/pages/_document.tsx

19 lines
675 B
XML

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@^6/dist/base.root.css" type="text/css"/>
<link rel="stylesheet" href="https://unpkg.com/@steffo/bluelib@^6/dist/classic.root.css" type="text/css"/>
<link rel="stylesheet" href="https://unpkg.com/@steffo/bluelib@^6/dist/colors-royalblue.root.css" type="text/css"/>
<link rel="stylesheet" href="https://unpkg.com/@steffo/bluelib@^6/dist/fonts-fira-ghpages.root.css" type="text/css"/>
</Head>
<body>
<Main/>
<NextScript/>
</body>
</Html>
)
}