-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path_document.tsx
25 lines (24 loc) · 1.27 KB
/
_document.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import * as React from "react";
import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html>
<Head>
<meta property='og:title' content='Cal.com Docs' />
<meta property='og:description' content='Open Source Scheduling: Send a link and meet or build an entire marketplace for humans to connect.' />
<meta property='og:image' content='https://website-git-basement-website-20-cal.vercel.app/og-image-home-v2.jpeg' />
<link as='font' crossOrigin='anonymous' href='https://cal.com/fonts/matter/Matter-SemiBold.woff' rel='preload' type='font/woff' />
<link as='font' crossOrigin='anonymous' href='https://cal.com/fonts/matter/Matter-Regular.woff' rel='preload' type='font/woff' />
<link as='font' crossOrigin='anonymous' href='https://cal.com/fonts/cal-sans/CalSans-SemiBold.woff2' rel='preload' type='font/woff' />
<link rel='shortcut icon' href='/docs/images/Cal.com_pfasr5.svg' />
<link rel='preconnect' href='https://fonts.googleapis.com' />
<link rel='preconnect' href='https://fonts.gstatic.com' />
<meta name='apple-mobile-web-app-capable' content='yes' />
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}