@@ -83,7 +83,7 @@ const CustomHead = ({ post, type }: CustomHeadInterface) => {
8383 return type === " posting" ? (
8484 <Head >
8585 { /* HTML Meta Tags */ }
86- <title >{ post ?.title } | 정현수 기술 블로그</title >
86+ <title >{ post ?.title } | 정현수 블로그</title >
8787 <meta name = " viewport" content = " width=device-width, initial-scale=1" />
8888
8989 { /* Facebook Meta Tags */ }
@@ -94,11 +94,11 @@ const CustomHead = ({ post, type }: CustomHeadInterface) => {
9494 <meta property = " og:type" content = " website" />
9595 <meta
9696 property = " og:site_name"
97- content = { ` ${post ?.title } | 정현수 기술 블로그 ` }
97+ content = { ` ${post ?.title } | 정현수 블로그 ` }
9898 />
9999 <meta
100100 property = " og:title"
101- content = { ` ${post ?.title } | 정현수 기술 블로그 ` }
101+ content = { ` ${post ?.title } | 정현수 블로그 ` }
102102 />
103103 <meta property = " og:description" content = { post ?.description } />
104104 <meta property = " og:image" content = { ` ${DOMAIN }${post ?.coverImage } ` } />
@@ -112,7 +112,7 @@ const CustomHead = ({ post, type }: CustomHeadInterface) => {
112112 />
113113 <meta
114114 name = " twitter:title"
115- content = { ` ${post ?.title } | 정현수 기술 블로그 ` }
115+ content = { ` ${post ?.title } | 정현수 블로그 ` }
116116 />
117117 <meta name = " twitter:description" content = { post ?.description } />
118118 <meta
@@ -129,14 +129,14 @@ const CustomHead = ({ post, type }: CustomHeadInterface) => {
129129 ) : (
130130 <Head >
131131 { /* HTML Meta Tags */ }
132- <title >정현수 기술 블로그</title >
132+ <title >정현수 블로그</title >
133133 <meta name = " description" content = " 공부한 것들을 정리해서 올립니다." />
134134 <meta name = " viewport" content = " width=device-width, initial-scale=1" />
135135 { /* Facebook Meta Tags */ }
136136 <meta property = " og:url" content = " https://junghyeonsu.com/" />
137137 <meta property = " og:type" content = " website" />
138- <meta property = " og:site_name" content = " 정현수 기술 블로그" />
139- <meta property = " og:title" content = " 정현수 기술 블로그" />
138+ <meta property = " og:site_name" content = " 정현수 블로그" />
139+ <meta property = " og:title" content = " 정현수 블로그" />
140140 <meta
141141 property = " og:description"
142142 content = " 공부한 것들을 정리해서 올립니다."
@@ -149,7 +149,7 @@ const CustomHead = ({ post, type }: CustomHeadInterface) => {
149149 <meta name = " twitter:card" content = " summary_large_image" />
150150 <meta property = " twitter:domain" content = " junghyeonsu.com" />
151151 <meta property = " twitter:url" content = " https://junghyeonsu.com/" />
152- <meta name = " twitter:title" content = " 정현수 기술 블로그" />
152+ <meta name = " twitter:title" content = " 정현수 블로그" />
153153 <meta
154154 name = " twitter:description"
155155 content = " 공부한 것들을 정리해서 올립니다."
0 commit comments