From 68a8d5f255a521f193adb002820ecec36cafbf6e Mon Sep 17 00:00:00 2001 From: neru Date: Mon, 25 May 2026 21:14:11 -0300 Subject: [PATCH] fix: move themeColor to viewport, remove desc --- src/app/layout.tsx | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 96f972e..31c4f78 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,12 @@ -import type { Metadata } from 'next'; +import type { Metadata, Viewport } from 'next'; import './globals.css'; export const metadata: Metadata = { title: '⛧', - description: '', + // description: '', openGraph: { title: '⛧', - description: '.', + // description: '', images: [ { url: 'https://neru.rip/ok.jpg', @@ -14,10 +14,13 @@ export const metadata: Metadata = { height: 1104, }, ], - }, - themeColor: '#fbcfe8' + } }; +export const viewport: Viewport = { + themeColor: '#fbcfe8', +} + export default function RootLayout({ children }: Readonly<{