-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (66 loc) · 2.28 KB
/
Copy pathindex.html
File metadata and controls
68 lines (66 loc) · 2.28 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="naver-site-verification"
content="2c36488b3941bc87e3a4643ad28cfc8d8c166954"
/>
<meta name="msvalidate.01" content="9081B66985BE6B68B497916139853371" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#f5f7f4" id="theme-color-meta" />
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-YS8S4VBN55"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-YS8S4VBN55');
</script>
<!-- Clarity tracking code for https://www.etern.co.kr/ -->
<script>
(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 + '?ref=bwt';
y = l.getElementsByTagName(r)[0];
y.parentNode.insertBefore(t, y);
})(window, document, 'clarity', 'script', 'wtbz96g5b9');
</script>
<!-- Blocking Script to prevent Theme Flickering -->
<script>
(function () {
const theme = localStorage.getItem('theme') || 'system';
const isDark =
theme === 'dark' ||
(theme === 'system' &&
window.matchMedia('(prefers-color-scheme: dark)').matches);
const metaThemeColor = document.getElementById('theme-color-meta');
if (isDark) {
document.documentElement.classList.add('dark');
document.documentElement.classList.add('dark-mode');
if (metaThemeColor) metaThemeColor.setAttribute('content', '#0e110d');
} else {
document.documentElement.classList.remove('dark');
document.documentElement.classList.remove('dark-mode');
if (metaThemeColor) metaThemeColor.setAttribute('content', '#f5f7f4');
}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>