2022-06-04 07:26:53 +00:00
|
|
|
import React from "react";
|
2022-06-03 16:36:24 +00:00
|
|
|
import { Html, Head, Main, NextScript } from "next/document";
|
|
|
|
|
|
|
|
export default function Document() {
|
|
|
|
return (
|
|
|
|
<Html>
|
|
|
|
<Head>
|
|
|
|
{/* <script src="https://unpkg.com/@barba/core"></script> */}
|
2022-06-10 07:49:12 +00:00
|
|
|
{/* <script src="/scripts/swup.js"></script> */}
|
2022-06-03 16:36:24 +00:00
|
|
|
<script src="/scripts/main.js" defer></script>
|
|
|
|
</Head>
|
|
|
|
<body className="bg-black">
|
|
|
|
<Main />
|
|
|
|
<NextScript />
|
|
|
|
</body>
|
|
|
|
</Html>
|
|
|
|
);
|
|
|
|
}
|