-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_document.tsx
54 lines (46 loc) · 1.67 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
45
46
47
48
49
50
51
52
53
54
import { Head, Html, Main, NextScript } from 'next/document'
/**
* https://nextjs.org/docs/pages/building-your-application/routing/custom-document
*/
/**
* Renders the Document component, which represents the HTML document structure for the application.
*
* @return {JSX.Element} The rendered Document component.
*/
export default function Document() {
return (
<Html lang="en">
<Head>
<meta charSet="utf-8" />
{/* <link rel="canonical" href="TODO" /> */}
<meta
name="description"
content="Opal Labs is the all in one dashboard for productivity, management, and organization."
/>
<meta
name="keywords"
content="Opal Labs, Opal Labs Dashboard, Productivity, Organization"
/>
{/* <meta name="theme-color" content="TODO" /> */}
<meta property="og:type" content="website" />
<meta property="og:title" content="Opal Labs" />
<meta
property="og:description"
content="Opal Labs is the all in one dashboard for productivity, management, and organization."
/>
{/*
<meta property="og:image" content="/backgrounds/collage_close.jpg" />
<meta property="twitter:image" content="/backgrounds/collage_close.jpg" />
<meta name="twitter:card" content="summary_large_image" />
<link rel="icon" type="image/svg+xml" sizes="512x512" href="/logo.svg" />
<link rel="apple-touch-icon" href="/icons/apple.png" />
<link rel="shortcut icon" href="/icons/favicon.ico" />
*/}
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
)
}