Skip to content

Commit

Permalink
[feat] SEO setting for google, naver
Browse files Browse the repository at this point in the history
  • Loading branch information
msdio committed Dec 15, 2022
1 parent c9d1ae6 commit 073d52b
Showing 1 changed file with 51 additions and 40 deletions.
91 changes: 51 additions & 40 deletions src/frontend/odongdong/src/index.html
Original file line number Diff line number Diff line change
@@ -1,43 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>오동동</title>

<base href="/" />

<meta property="og:title" content="오동동" />
<meta
property="og:image"
content="https://bucket-odongdong.s3.ap-northeast-2.amazonaws.com/default/%EC%B9%B4%EC%B9%B4%EC%98%A4_%EA%B3%B5%EC%9C%A0_%EC%9D%B4%EB%AF%B8%EC%A7%80.png"
/>
<meta property="og:description" content="주변 화장실을 찾거나, 손쉽게 등록해보세요!" />

<meta name="color-scheme" content="light dark" />
<meta
name="viewport"
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />

<link rel="icon" type="image/png" href="assets/icon/logo-blue.png" />

<!-- add to homescreen for ios -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />

<!-- apple touch icon for homescreen -->
<link rel="apple-touch-icon" href="assets/icon/logo-blue.png" />

<!-- naver map -->
<script
type="text/javascript"
src="https://openapi.map.naver.com/openapi/v3/maps.js?ncpClientId=dg8ryxra1s"
></script>
</head>

<body>
<app-root></app-root>
</body>
<head>
<meta charset="utf-8" />
<title>오동동 - 내 주변 화장실</title>

<meta name="keywords" content="오동동, odongdong, 화장실, 주변 화장실, 공공 화장실" />
<meta name="description" content="주변 화장실을 찾거나, 손쉽게 등록해보세요!" />

<base href="/" />

<meta property="og:title" content="오동동" />
<meta
property="og:image"
content="https://bucket-odongdong.s3.ap-northeast-2.amazonaws.com/default/%EC%B9%B4%EC%B9%B4%EC%98%A4_%EA%B3%B5%EC%9C%A0_%EC%9D%B4%EB%AF%B8%EC%A7%80.png"
/>
<meta property="og:description" content="주변 화장실을 찾거나, 손쉽게 등록해보세요!" />
<meta property="og:url" content="https://odongdong.site" />

<meta name="author" content="odongdong" />

<!-- 네이버 소유권 인증 -->
<meta name="naver-site-verification" content="7cb812ee12b4521b590faedbe189393259445fd1" />

<meta name="robots" content="index, follow" />

<meta name="color-scheme" content="light dark" />
<meta
name="viewport"
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />

<link rel="icon" type="image/png" href="assets/icon/logo-blue.png" />

<!-- add to homescreen for ios -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />

<!-- apple touch icon for homescreen -->
<link rel="apple-touch-icon" href="assets/icon/logo-blue.png" />

<!-- naver map -->
<script
type="text/javascript"
src="https://openapi.map.naver.com/openapi/v3/maps.js?ncpClientId=dg8ryxra1s"
></script>
</head>

<body>
<app-root></app-root>
</body>
</html>

0 comments on commit 073d52b

Please sign in to comment.