Skip to content

Commit 4fb437b

Browse files
committed
정현수 기술 블로그 -> 정현수 블로그
1 parent f8f65b4 commit 4fb437b

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

content/please-buy-the-blog/3/please-buy-the-blog-3.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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="공부한 것들을 정리해서 올립니다."

src/templates/AllPostPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export default function AllPostPageTemplate({ data }: AllPostPageTemplateProps)
124124
export const Head: HeadFC<Queries.AllPostPageTemplateQuery> = ({ data }) => {
125125
const ogimage = data.ogimage?.gatsbyImageData!;
126126
const description = "웹 프론트엔드 개발자 정현수입니다.";
127-
const title = "정현수 기술 블로그";
127+
const title = "정현수 블로그";
128128

129129
return (
130130
<>

src/templates/PortfolioPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const PostTemplate: React.FC<PortfolioTemplateProps> = ({ children, data, pageCo
6868
};
6969

7070
export const Head: HeadFC<GatsbyTypes.PortfolioPageQuery> = ({ data }) => {
71-
const title = `${data.post?.frontmatter?.title!} - 정현수 기술 블로그`;
71+
const title = `${data.post?.frontmatter?.title!} - 정현수 블로그`;
7272
const description = data.post?.frontmatter?.description!;
7373
const ogimage = data.post?.frontmatter?.thumbnail?.childImageSharp?.gatsbyImageData!;
7474
const metaLocale = "ko_KR";

src/templates/PostPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export const Head: HeadFC<Queries.PostPageQuery> = ({ data }) => {
111111
const locale = data.post?.frontmatter?.locale! || "ko";
112112
const title =
113113
locale === "ko"
114-
? `${data.post?.frontmatter?.title!} - 정현수 기술 블로그`
114+
? `${data.post?.frontmatter?.title!} - 정현수 블로그`
115115
: `${data.post?.frontmatter?.title!} - Junghyeonsu Tech Blog`;
116116
const description = data.post?.frontmatter?.description!;
117117
const ogimage = data.post?.frontmatter?.thumbnail?.childImageSharp?.gatsbyImageData!;

src/templates/TagPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export const Head: HeadFC<Queries.TagPageTemplateQuery, TagsProps["pageContext"]
7575
}) => {
7676
const ogimage = data.ogimage?.gatsbyImageData!;
7777
const description = "웹 프론트엔드 개발자 정현수입니다.";
78-
const title = "정현수 기술 블로그";
78+
const title = "정현수 블로그";
7979
const tag = pageContext.tag;
8080

8181
return (

0 commit comments

Comments
 (0)