From 9682022791d5601704fd9c896a3eb710a21b482f Mon Sep 17 00:00:00 2001 From: oikkoikk Date: Sun, 8 Oct 2023 13:57:15 +0900 Subject: [PATCH] Fix : open-graph url --- src/app/layout.tsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3492500..5c83e94 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -19,7 +19,17 @@ export const metadata = { }, description: '나만을 위한 유튜브 강의 관리 플랫폼 스룸', openGraph: { - images: '/image/opengraph/opengraph-image.jpg' + title: '스룸', + description: '나만을 위한 유튜브 강의 관리 플랫폼 스룸', + type: 'website', + locale: 'ko_KR', + url: 'https://sroom.kr', + images: { + url: 'https://sroom.kr/image/opengraph/opengraph-image.jpg', + width: 1200, + height: 630, + alt: '나만을 위한 유튜브 강의 관리 플랫폼, 스룸' + } } };