mocksaml/pages/_document.tsx

29 lines
701 B
TypeScript
Raw Normal View History

2022-02-18 08:56:42 +00:00
import Document, { Html, Head, Main, NextScript } from "next/document";
class MyDocument extends Document {
render() {
return (
<Html>
<Head>
2022-02-18 12:52:39 +00:00
<link rel="preconnect" href="https://fonts.googleapis.com" />
2022-02-18 08:56:42 +00:00
<link
2022-02-18 12:52:39 +00:00
rel="preconnect"
href="https://fonts.gstatic.com"
crossOrigin="true"
/>
<link
href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&display=swap"
2022-02-18 08:56:42 +00:00
rel="stylesheet"
/>
</Head>
<body className="theme-default">
<Main />
<NextScript />
</body>
</Html>
);
}
}
export default MyDocument;