-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
87 lines (86 loc) · 3.29 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
77
78
79
80
81
82
83
84
85
86
87
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wizzl - A Realtime Chat Application</title>
<meta
name="description"
content="Modern, real-time chat application for web and mobile platforms. Interactive interface, multiple theme options, and mobile-friendly design."
/>
<meta
name="keywords"
content="Wizzl,Chat,Communication,Free Application,Free Chat Application"
/>
<meta name="color-scheme" content="dark" />
<meta name="theme-color" content="#cb99fa" />
<!--<link rel="manifest" id="MANIFEST_LINK" href="/data/manifest/" crossorigin="use-credentials" />-->
<!-- Facebook Meta Tags -->
<meta name="og:site_name" content="Wizzl" />
<meta name="og:title" content="Wizzl - Fast, secure and reliable chat" />
<meta name="og:type" content="website" />
<meta name="og:url" content="https://%VITE_SITE_DOMAIN%" />
<meta
name="og:description"
content="Modern, real-time chat application for web and mobile platforms. Interactive interface, multiple theme options, and mobile-friendly design."
/>
<meta name="og:image" content="https://%VITE_SITE_DOMAIN%/static/thumbnail.jpg" />
<!-- Twitter Meta Tags -->
<meta name="twitter:domain" content="%VITE_SITE_DOMAIN%" />
<meta name="twitter:url" content="https://%VITE_SITE_DOMAIN%" />
<meta name="twitter:title" content="Wizzl - Fast, secure and reliable chat" />
<meta
name="twitter:description"
content="Modern, real-time chat application for web and mobile platforms. Interactive interface, multiple theme options, and mobile-friendly design."
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://%VITE_SITE_DOMAIN%/static/thumbnail.jpg" />
<!---->
<script>
window.GLOBAL_ENV = {
DOMAIN: '%VITE_SITE_DOMAIN%',
API_ENDPOINT: '%VITE_API_ENDPOINT%',
WS_ENDPOINT: '%VITE_WS_ENDPOINT%',
CDN_HOST: '%VITE_CDN_HOST%',
SUPPORT_HOST: '%VITE_SUPPORT_HOST%',
INVITE_HOST: '%VITE_INVITE_HOST%',
MODE: '%MODE%',
STATIC: '%VITE_STATIC_HOST%',
LINK_HOST: '%VITE_LINK_HOST%',
DEVS_HOST: '%VITE_DEV_HOST%'
}
</script>
<!-- Console attention -->
<script src="/attention.js" defer></script>
<style>
[data-platform='mobile'] {
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-ms-overflow-style: none;
scrollbar-width: none;
}
[data-platform='mobile']::-webkit-scrollbar {
display: none;
-webkit-appearance: none;
}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-RKJ8XM5PZ5"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-RKJ8XM5PZ5')
</script>
</head>
<body class="bg-main text-white">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>