-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy path_document.tsx
44 lines (40 loc) · 1.82 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { Head, Html, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html lang="en">
<Head>
<meta
name="description"
content="Making your next open-source contribution make the world better. For Good First Issue is a curated list of accessible issues from open-source projects helping our communities. Start today!"
/>
<meta property="og:url" content="https://forgoodfirstissue.dev" />
<meta property="og:type" content="website" />
<meta
property="og:title"
content="For Good First Issue | Make your next open-source contribution matter."
/>
<meta property="og:image" content="https://forgoodfirstissue.dev/" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="forgoodfirstissue.dev" />
<meta property="twitter:url" content="https://forgoodfirstissue.dev" />
<meta
name="twitter:title"
content="For Good First Issue | Make your next open-source contribution matter."
/>
<meta
name="twitter:description"
content="Making your next open-source contribution make the world better. For Good First Issueis a curated list of accessible issues from open-source projects helping our communities. Start today!"
/>
<meta name="twitter:image" content="https://forgoodfirstissue.dev/" />
<meta charSet="UTF-8" />
<link rel="apple-touch-icon" type="image/png" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" href="/android-favicon.png" />
<link rel="shortcut icon" type="image/png" sizes="32x32" href="/favicon.png" />
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}