-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (38 loc) · 2.67 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<meta name="theme-color" content="#202020" />
<title>TimeWiz – Effortlessly Schedule Meetings Across Time Zones</title>
<meta name="description" content="TimeWiz is your ultimate solution for effortlessly scheduling meetings across different time zones. Our intuitive platform takes the headache out of coordinating global meetings, allowing you to seamlessly collaborate with colleagues and clients worldwide. Say goodbye to time zone confusion and hello to efficient scheduling with TimeWiz. Try it now!" />
<meta property="og:url" content="https://timewiz.cc/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="TimeWiz – Effortlessly Schedule Meetings Across Time Zones" />
<meta property="og:description" content="TimeWiz is your ultimate solution for effortlessly scheduling meetings across different time zones. Our intuitive platform takes the headache out of coordinating global meetings, allowing you to seamlessly collaborate with colleagues and clients worldwide. Say goodbye to time zone confusion and hello to efficient scheduling with TimeWiz. Try it now!" />
<meta property="og:image" content="https://timewiz.cc/og.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="timewiz.cc" />
<meta property="twitter:url" content="https://timewiz.cc/" />
<meta name="twitter:title" content="TimeWiz – Effortlessly Schedule Meetings Across Time Zones" />
<meta name="twitter:description" content="TimeWiz is your ultimate solution for effortlessly scheduling meetings across different time zones. Our intuitive platform takes the headache out of coordinating global meetings, allowing you to seamlessly collaborate with colleagues and clients worldwide. Say goodbye to time zone confusion and hello to efficient scheduling with TimeWiz. Try it now!" />
<meta name="twitter:image" content="https://timewiz.cc/og.png" />
<style>
body.dark {
background-color: black;
}
</style>
<script>
window.addEventListener("load", () => {
const isDark = JSON.parse(localStorage.getItem("theme")) === "dark"
if (isDark) document.body.classList.add("dark")
})
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script defer src="https://cloud.umami.is/script.js" data-website-id="027ea328-44a5-4d2c-bd10-87ea5db0ed9d"></script>
</body>
</html>