From 44e5c12ddd48d8da070d48d132a1fd41f2fd7fe4 Mon Sep 17 00:00:00 2001 From: happhee Date: Tue, 6 Aug 2024 20:16:42 +0900 Subject: [PATCH 1/2] feat : root meta data --- src/app/layout.tsx | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d1d1a1af..6debf534 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -16,8 +16,19 @@ import { HydrationBoundary, dehydrate } from "@tanstack/react-query"; import "./globals.css"; export const metadata: Metadata = { - title: "FEW", - description: "매일 아침마다 경제 아티클과 문제를 보내드려요!", + title: "FEW - Just a few minute", + description: "퀴즈로 뉴스레터 끝까지 읽기", + openGraph: { + title: "FEW - Just a few minute", + description: "퀴즈로 뉴스레터 끝까지 읽기", + siteName: "FEW", + locale: "ko_KR", + type: "website", + url: "https://www.fewletter.com/", + images: { + url: "/fewlogo.svg", + }, + }, icons: { icon: "/fewlogo.svg", }, From 890c7ab4ee6912bad306a2457449d01e16f710fc Mon Sep 17 00:00:00 2001 From: happhee Date: Tue, 6 Aug 2024 20:17:22 +0900 Subject: [PATCH 2/2] bugfix : remove '/' --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6debf534..2b999de1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -24,7 +24,7 @@ export const metadata: Metadata = { siteName: "FEW", locale: "ko_KR", type: "website", - url: "https://www.fewletter.com/", + url: "https://www.fewletter.com", images: { url: "/fewlogo.svg", },