-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (70 loc) · 3.16 KB
/
index.html
File metadata and controls
75 lines (70 loc) · 3.16 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
<!doctype html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YPXJ53DZV3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-YPXJ53DZV3");
</script>
<!-- Basic metadata -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Precise Color Clock</title>
<meta
name="description"
content="An interactive color clock that transforms the current time into unique, beautiful background colors using HEX, RGB, HSL, and other color models. After all, time shouldn't just fly - it should glow."
/>
<!-- Social media & SEO -->
<meta property="og:title" content="Precise Color Clock" />
<meta
property="og:description"
content="An interactive color clock that transforms the current time into unique, beautiful background colors using HEX, RGB, HSL, and other color models. After all, time shouldn't just fly - it should glow."
/>
<meta property="og:url" content="https://precise-color-clock.vercel.app" />
<meta property="og:image" content="/og-image.png" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Precise Color Clock" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Precise Color Clock" />
<meta
name="twitter:description"
content="An interactive color clock that transforms the current time into unique, beautiful background colors using HEX, RGB, HSL, and other color models. After all, time shouldn't just fly - it should glow."
/>
<meta name="twitter:image" content="/og-image.png" />
<meta name="theme-color" content="#000000" />
<meta name="keywords" content="precise, color, clock, time, HEX, RGB, HWB, color model" />
<!-- Favicon & fonts -->
<link rel="icon" href="/favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="preload"
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap"
as="style"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap"
/>
</head>
<body>
<div id="root" aria-label="Precise Color Clock Application"></div>
<noscript>
<div style="text-align: center; padding: 50px; font-family: system-ui, sans-serif">
<h1>Precise Color Clock</h1>
<p>
An interactive color clock that transforms time into HEX, RGB, HSL and other color models.
</p>
<p>After all, time shouldn't just fly - it should glow.</p>
<p><strong>JavaScript is required</strong> to display the live-updating color clock.</p>
<p>Enable JavaScript to see real-time color representations of the current time.</p>
</div>
</noscript>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>