Skip to content

Commit

Permalink
fix: og image 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ollehkt committed Apr 1, 2024
1 parent 8b48555 commit 5e4bc22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions frontend/src/app/(with-header)/detail/[travel]/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export async function generateMetadata({
title: '장소 상세 페이지',
description: '장소 상세 설명',
openGraph: {
images: ['/public/logo/og-logo.png'],
images: ['/logo/og-logo.png'],
},
};
} else {
Expand All @@ -50,7 +50,7 @@ export async function generateMetadata({
title: '코스 상세 페이지',
description: '코스 상세 설명',
openGraph: {
images: ['/public/logo/favicon.svg'],
images: ['/logo/favicon.svg'],
},
};
}
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const metadata: Metadata = {
openGraph: {
title: '이길로그 홈페이지',
description: '지도 기반 장소 기록·공유 서비스',
images: ['/public/logo/og-logo.png'],
images: ['/logo/og-logo.png'],
type: 'website',
siteName: '이길로그',
url: 'https://yigil.co.kr',
Expand All @@ -33,7 +33,7 @@ export const metadata: Metadata = {
twitter: {
title: '이길로그 홈페이지',
description: '지도 기반 장소 기록·공유 서비스',
images: ['/public/logo/og-logo.png'],
images: ['/logo/og-logo.png'],
},
};

Expand Down

0 comments on commit 5e4bc22

Please sign in to comment.