Skip to content

Commit f545fa0

Browse files
Merge pull request #73 from ShipFriend0516/fix/metadata
fix: blog metadata, json-ld update
2 parents b3b2c6a + 8da0330 commit f545fa0

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

app/entities/post/detail/PostJSONLd.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ const PostJSONLd = ({ post }: { post: Post }) => {
1414
'@context': 'https://schema.org',
1515
'@type': 'BlogPosting',
1616
headline: post.title,
17+
name: 'ShipFriend TechBlog 🌱',
1718
alternativeHeadline: post.subTitle, // 서브타이틀용
1819
description: post.subTitle || post.content.substring(0, 160),
1920
articleBody: post.content, // 본문 전체

app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const metadata: Metadata = {
4141
type: 'website',
4242
},
4343
other: {
44-
'application-name': 'Shipfriend Tech Blog',
44+
'application-name': 'ShipFriend TechBlog 🌱',
4545
author: 'ShipFriend',
4646
'og:type': 'article',
4747
'article:tag': 'technology,programming,web development',

0 commit comments

Comments
 (0)