-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (132 loc) · 4.55 KB
/
index.html
File metadata and controls
143 lines (132 loc) · 4.55 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
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
<!doctype html>
<html lang="ko">
<head>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' });
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-NTRF52GQ');
</script>
<!-- End Google Tag Manager -->
<!-- dataLayer 초기화 (GTM이 사용) -->
<script>
window.dataLayer = window.dataLayer || [];
</script>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<!-- ====== [SEO: 반드시 정적으로 둠] ====== -->
<title>끼니콩</title>
<link rel="canonical" href="https://kkinicong.co.kr/" />
<!-- Search -->
<meta
name="description"
content="가까운 아동급식카드 가맹점 이곳에서 찾아봐요"
/>
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="끼니콩" />
<meta
property="og:description"
content="가까운 아동급식카드 가맹점 이곳에서 찾아봐요"
/>
<meta property="og:url" content="https://kkinicong.co.kr/" />
<meta property="og:image" content="https://kkinicong.co.kr/og-image.png" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="끼니콩" />
<meta
name="twitter:description"
content="가까운 아동급식카드 가맹점 이곳에서 찾아봐요"
/>
<meta name="twitter:image" content="https://kkinicong.co.kr/og-image.png" />
<!-- ================================================ -->
<!-- 카톡 인앱 웹뷰 감지: 아주 이른 타이밍에 자동 글자확대 비활성화 -->
<script>
(function () {
if (/KAKAOTALK|KakaoTalk/i.test(navigator.userAgent)) {
// 인라인 스타일로 우선순위 확보(+ !important)
document.documentElement.style.cssText +=
';-webkit-text-size-adjust:none !important;text-size-adjust:none !important;';
document.documentElement.classList.add('is-kakao');
}
})();
</script>
<!-- 전역 기본 보정: 다른 브라우저에선 100% 유지 + rem 기준 고정 -->
<style>
html {
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
font-size: 16px; /* 1rem 기준 */
font-synthesis: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family:
Pretendard,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
'Noto Sans KR',
'Apple SD Gothic Neo',
'Malgun Gothic',
Arial,
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol',
sans-serif;
}
body {
font-size: 1rem;
}
/* 카톡에서만 완전 차단 (스크립트가 .is-kakao를 추가함) */
html.is-kakao {
-webkit-text-size-adjust: none !important;
text-size-adjust: none !important;
}
</style>
<!-- Google Search Console ownership -->
<meta
name="google-site-verification"
content="MgWIj6pzr0s3wno-nIkU2nVbY5bWWXviIcULcJ5FcRg"
/>
<!-- Pretendard (비차단 로딩) -->
<link rel="preconnect" href="https://cdn.jsdelivr.net" crossorigin />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.css"
media="print"
onload="this.media='all'"
/>
<noscript>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.css"
/>
</noscript>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-NTRF52GQ"
height="0"
width="0"
style="display: none; visibility: hidden"
></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>