From 8f3b896158991ea4935cb98ad3b6bb1d83ec5320 Mon Sep 17 00:00:00 2001 From: Igor Papandinas Date: Thu, 4 Jan 2024 17:56:31 +0100 Subject: [PATCH] chore: metadata set --- app/layout.tsx | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/app/layout.tsx b/app/layout.tsx index e31fd16..f4c3fab 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -30,6 +30,41 @@ export const metadata: Metadata = { shortcut: "/favicon-16x16.png", apple: "/apple-touch-icon.png", }, + themeColor: "#020817", + appleWebApp: { + capable: true, + title: SITE_CONFIG.name, + statusBarStyle: "black-translucent", + }, + formatDetection: { telephone: false }, + openGraph: { + type: "website", + url: "/", + title: SITE_CONFIG.name, + description: SITE_CONFIG.description, + siteName: SITE_CONFIG.name, + images: [ + { + url: "/api/og", + width: 1200, + height: 630, + }, + ], + }, + twitter: { + title: SITE_CONFIG.name, + description: SITE_CONFIG.description, + card: "summary_large_image", + site: "@kudos_ink", + creator: "@kudos_ink", + images: [ + { + url: "/api/og", + width: 1200, + height: 630, + }, + ], + }, }; export const viewport: Viewport = {