-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (79 loc) · 3.18 KB
/
Copy pathindex.html
File metadata and controls
88 lines (79 loc) · 3.18 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
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Draw</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet" />
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Draw",
"url": "https://codefrydev.in/Draw/",
"description": "A free infinite canvas drawing app with pen, eraser, and pan tools. Supports undo/redo, sketch history, color picker, and PNG export.",
"applicationCategory": "UtilitiesApplication",
"operatingSystem": "Any",
"browserRequirements": "Requires a modern web browser with HTML5 Canvas support",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.6",
"ratingCount": "1769",
"bestRating": "5",
"worstRating": "1"
},
"author": {
"@type": "Person",
"name": "Prashant",
"url": "https://codefrydev.in"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<!-- Deferred Analytics & Tracking -->
<script type="text/javascript">
(function() {
let trackingLoaded = false;
function loadTrackingScripts() {
if (trackingLoaded) return;
trackingLoaded = true;
// 1. Google Analytics
const gaScript = document.createElement('script');
gaScript.async = true;
gaScript.src = 'https://www.googletagmanager.com/gtag/js?id=G-VM01Q3R43D';
document.head.appendChild(gaScript);
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-VM01Q3R43D');
// 2. Microsoft Clarity
(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", "mxr4hxioh4");
['scroll', 'mousemove', 'touchstart', 'keydown', 'click'].forEach(function(event) {
window.removeEventListener(event, loadTrackingScripts);
});
}
['scroll', 'mousemove', 'touchstart', 'keydown', 'click'].forEach(function(event) {
window.addEventListener(event, loadTrackingScripts, { once: true, passive: true });
});
setTimeout(loadTrackingScripts, 5000);
})();
</script>
</body>
</html>