Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,29 @@
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)) {
Expand Down
39 changes: 0 additions & 39 deletions src/pages/home/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,45 +9,6 @@ import CommunitySection from '@/components/home/CommunitySection';
function HomePage() {
return (
<>
<Helmet>
{/* 브라우저 탭/검색결과 제목 */}
<title>끼니콩</title>

{/* Canonical URL */}
<link rel="canonical" href="https://kkinicong.co.kr/" />

{/* 네이버 검색결과 설명 */}
<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 Card */}
<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"
/>
</Helmet>

<div className="flex flex-col font-pretendard pb-[61px]">
<HeaderToCarouselSection />

Expand Down