-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 1.13 KB
/
index.html
File metadata and controls
35 lines (34 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/icons/icon-96x96.png" sizes="96x96" />
<link rel="mask-icon" href="/icons/icon-96x96.png" color="#121212" />
<meta name="theme-color" content="#121212" />
<meta name="color-scheme" content="light dark" />
<title>Find & Check</title>
<script type="module">
import { Buffer } from "buffer";
window.Buffer = Buffer;
</script>
</head>
<body>
<div id="root"></div>
<script crossorigin type="module" src="/src/main.tsx"></script>
<script src="https://telegram.org/js/telegram-web-app.js"></script>
<script
crossorigin
src="https://www.googletagmanager.com/gtag/js?id=G-0734WGRSVS"
></script>
<script crossorigin id="google-analytics">
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-0734WGRSVS");
</script>
</body>
</html>