forked from stephenou/fruitionsite
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (98 loc) · 4.22 KB
/
index.html
File metadata and controls
106 lines (98 loc) · 4.22 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#1976d2" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/favicon.svg" />
<!-- SEO Meta Tags -->
<title>
Worknot - Host Notion Sites on Your Custom Domain | Cloudflare
Workers
</title>
<meta
name="description"
content="Host your Notion Site on a custom domain with Cloudflare Workers. Actively maintained by Classmethod and always up-to-date with the latest Notion Site specifications. Pretty URLs, image optimization, and global CDN delivery."
/>
<meta
name="keywords"
content="Notion Site, Notion custom domain, Cloudflare Workers, Notion hosting, Notion website, pretty URLs, image optimization, Classmethod"
/>
<meta name="author" content="Classmethod" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://worknot.classmethod.live/" />
<meta
property="og:title"
content="Worknot - Host Notion Sites on Your Custom Domain"
/>
<meta
property="og:description"
content="Host your Notion Site on a custom domain with Cloudflare Workers. Actively maintained by Classmethod, always up-to-date with the latest Notion specifications."
/>
<meta property="og:site_name" content="Worknot" />
<meta
property="og:image"
content="https://worknot.classmethod.live/og-image.svg"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://worknot.classmethod.live/" />
<meta
name="twitter:title"
content="Worknot - Host Notion Sites on Your Custom Domain"
/>
<meta
name="twitter:description"
content="Host your Notion Site on a custom domain with Cloudflare Workers. Actively maintained by Classmethod, always up-to-date with the latest Notion specifications."
/>
<meta
name="twitter:image"
content="https://worknot.classmethod.live/og-image.svg"
/>
<!-- Canonical URL -->
<link rel="canonical" href="https://worknot.classmethod.live/" />
<!-- Structured Data (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Worknot",
"description": "Host your Notion Site on a custom domain with Cloudflare Workers. Generate Worker scripts to proxy Notion pages with pretty URLs and image optimization.",
"url": "https://worknot.classmethod.live/",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Web",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"creator": {
"@type": "Organization",
"name": "Classmethod",
"url": "https://classmethod.jp/"
}
}
</script>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
/>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>