-
Notifications
You must be signed in to change notification settings - Fork 80
/
index.html
76 lines (70 loc) · 2.36 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="/src/assets/icons/favicon.svg"
/>
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0" /> -->
<!-- Primary Meta Tags -->
<title>Windows 11 in Preact</title>
<meta name="title" content="Windows 11 Web" />
<meta
name="description"
content="Awe-amazing Windows 11 clone. Oh wait, Not for your Computer, but for the web! ⚡"
/>
<!-- To study traffic data -->
<meta name="google-site-verification" content="%VITE_VERIF_CODE%" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://win11.vercel.app/" />
<link rel="canonical" href="https://windows-11.vercel.app/" />
<meta property="og:title" content="Windows 11 in Preact" />
<meta
property="og:description"
content="Awe-amazing Windows 11 clone. Oh wait, Not for your Computer, but for the web! ⚡"
/>
<meta
property="og:image"
content="https://win11.vercel.app/assets/windows_11_web.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://win11.vercel.app/" />
<meta property="twitter:title" content="Windows 11 in Preact" />
<meta
property="twitter:description"
content="Awe-amazing Windows 11 clone. Oh wait, Not for your Computer, but for the web! ⚡"
/>
<meta
property="twitter:image"
content="https://win11.vercel.app/assets/windows_11_web.png"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-4RJJLPN38T"
></script>
<script type="module">
if (import.meta.env.PROD) {
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-4RJJLPN38T");
if ("serviceWorker" in navigator) {
window.addEventListener("load", function () {
navigator.serviceWorker.register("/sw.js");
});
}
}
</script>
</body>
</html>