-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
147 lines (145 loc) · 4.29 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Amstangram</title>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0, shrink-to-fit=no, viewport-fit=cover"
/>
<meta property="og:title" content="Amstangram" />
<meta
property="og:description"
content="The evergrowing tangrams collection."
/>
<meta property="og:type" content="website" />
<meta property="og:image" content="https://amstangr.am/banner.png" />
<meta property="og:url" content="https://amstangr.am" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="fb:app_id" content="654214645128292" />
<link rel="manifest" href="/manifest.webmanifest" crossorigin="anonymous" />
<meta name="theme-color" content="#1DD1A1" />
<style>
@font-face {
font-family: "Comic Neue";
src: url("./src/assets/comicneue-regular.woff2") format("woff2");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Comic Neue";
src: url("./src/assets/comicneue-lightitalic.woff2") format("woff2");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Comic Neue";
src: url("./src/assets/comicneue-light.woff2") format("woff2");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Comic Neue";
src: url("./src/assets/comicneue-italic.woff2") format("woff2");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Comic Neue";
src: url("./src/assets/comicneue-bolditalic.woff2") format("woff2");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Comic Neue";
src: url("./src/assets/comicneue-bold.woff2") format("woff2");
font-weight: normal;
font-style: normal;
}
</style>
<script type="module">
import { DIALOG_CLOSED_REASON } from "./src/constants"
window.sentryOnLoad = function () {
Sentry.init({
enabled: import.meta.env.PROD,
release: import.meta.env.VITE_APP_VERSION,
environment: import.meta.env.MODE,
beforeSend: (event, hint) => {
if (hint.originalException === DIALOG_CLOSED_REASON) {
return null
}
return event
},
})
}
</script>
<script
src="https://js.sentry-cdn.com/1b2f34262d80460298da419637b59901.min.js"
crossorigin="anonymous"
></script>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-F7R3KZMTTS"
></script>
<script type="module">
if (import.meta.env.PROD) {
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag("js", new Date())
gtag("config", "G-F7R3KZMTTS", {
anonymize_ip: true,
cookie_expires: 0,
})
}
</script>
<script src="/clipper_unminified.js"></script>
<style>
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
</style>
<link rel="apple-touch-icon" sizes="48x48" href="/icons/icon-48x48.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/icons/icon-72x72.png" />
<link rel="apple-touch-icon" sizes="96x96" href="/icons/icon-96x96.png" />
<link
rel="apple-touch-icon"
sizes="144x144"
href="/icons/icon-144x144.png"
/>
<link
rel="apple-touch-icon"
sizes="192x192"
href="/icons/icon-192x192.png"
/>
<link
rel="apple-touch-icon"
sizes="256x256"
href="/icons/icon-256x256.png"
/>
<link
rel="apple-touch-icon"
sizes="384x384"
href="/icons/icon-384x384.png"
/>
<link
rel="apple-touch-icon"
sizes="512x512"
href="/icons/icon-512x512.png"
/>
</head>
<body>
<div id="root"></div>
<div id="dialogContainer"></div>
<div id="notificationContainer"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>