From dbacf44dae83270da4b3119cfdb179318e17a2dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=EC=A7=84=EB=A6=AC/=EC=8A=A4=ED=86=A0=EC=96=B4?= =?UTF-8?q?=ED=94=84=EB=A1=A0=ED=8A=B8=ED=8C=80?= Date: Sun, 21 Apr 2024 17:02:20 +0900 Subject: [PATCH] feat: change the share description --- src/app/(main)/layout.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/app/(main)/layout.tsx b/src/app/(main)/layout.tsx index 7a062b5..340025f 100644 --- a/src/app/(main)/layout.tsx +++ b/src/app/(main)/layout.tsx @@ -6,6 +6,14 @@ export const viewport: Viewport = { themeColor: "var(--color-white)", }; +import { Metadata } from "next"; + +export const generateMetadata = async (): Promise => { + return { + description: "Self-check Your Dividend Portfolio", + }; +}; + const MainLayout = ({ children }: { children: React.ReactNode }) => { return (