From 698701519571712cb582c8f68b6bc56b6219ed0a Mon Sep 17 00:00:00 2001 From: NotII <46204250+NotII@users.noreply.github.com> Date: Sun, 6 Apr 2025 15:34:14 +0100 Subject: [PATCH] Update layout.tsx --- app/dashboard/chats/layout.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/app/dashboard/chats/layout.tsx b/app/dashboard/chats/layout.tsx index 608d259..e6aae9c 100644 --- a/app/dashboard/chats/layout.tsx +++ b/app/dashboard/chats/layout.tsx @@ -1,10 +1,19 @@ -import { Metadata } from "next"; +import { Metadata, Viewport } from "next"; export const metadata: Metadata = { title: "Customer Chats | Ember Market", description: "Manage your customer conversations", }; +export const viewport: Viewport = { + width: "device-width", + initialScale: 1, + themeColor: [ + { media: "(prefers-color-scheme: dark)", color: "#000000" }, + { media: "(prefers-color-scheme: light)", color: "#D53F8C" }, + ], +}; + export default function ChatsLayout({ children }: { children: React.ReactNode }) { return <>{children}; } \ No newline at end of file