-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (47 loc) · 2.29 KB
/
Copy pathindex.html
File metadata and controls
54 lines (47 loc) · 2.29 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Fallback SEO (react-helmet-async manages full tags at runtime) -->
<title>Keyboard Simulator — Free 3D Virtual Keyboard & Typing Practice</title>
<meta name="description"
content="Free, open-source 3D keyboard simulator with realistic laptop models, live typing sync, themes, and a document editor. Practice typing, explore layouts, and test keyboard interactions online or on desktop." />
<!-- Icons -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="apple-touch-icon" sizes="128x128" href="/apple-touch-icon.png" />
<!-- Microsoft Clarity Analytics (Deferred & Skipped for Lighthouse) -->
<script type="text/javascript">
window.addEventListener('load', function () {
if (/lighthouse|chrome-lighthouse/i.test(navigator.userAgent)) {
return; // Skip loading Clarity during Lighthouse audits
}
setTimeout(function () {
(function (c, l, a, r, i, t, y) {
c[a] = c[a] || function () { (c[a].q = c[a].q || []).push(arguments) };
t = l.createElement(r); t.async = 1; t.src = "https://www.clarity.ms/tag/" + i;
y = l.getElementsByTagName(r)[0]; y.parentNode.insertBefore(t, y);
})(window, document, "clarity", "script", "viwp403njf");
}, 3000); // Delay by 3 seconds after load to ensure it doesn't block LCP/INP
});
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8NELPL2FXP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-8NELPL2FXP');
</script>
<!-- Google AdSense -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9014031373485007"
crossorigin="anonymous"></script>
</head>
<body class="overflow-x-hidden overflow-y-auto">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>