From ee7d6bfccf60507b84c1cb1e2be764f68bc6a48e Mon Sep 17 00:00:00 2001 From: lsj0202 Date: Tue, 24 Sep 2024 14:28:00 +0900 Subject: [PATCH] =?UTF-8?q?feat(client):=20metatag=20=EC=B6=94=EA=B0=80?= =?UTF-8?q?=ED=95=98=EC=97=AC=20seo=20=EC=B5=9C=EC=A0=81=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/client/src/app/layout.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/client/src/app/layout.tsx b/apps/client/src/app/layout.tsx index 8ebe70c..458d365 100644 --- a/apps/client/src/app/layout.tsx +++ b/apps/client/src/app/layout.tsx @@ -4,7 +4,10 @@ import Providers from '@/providers/Providers'; import '@/styles/globals.css'; import { PropsWithChildren } from 'react'; -export const metadata = { title: '쪼잉' }; +export const metadata = { + title: '쪼잉', + description: '쪼잉을 이용하여 프로젝트를 진행해보세요!', +}; const RootLayout = ({ children }: PropsWithChildren) => { return (