mocksaml/pages/_document.tsx

25 lines
655 B
TypeScript
Raw Normal View History

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