Update layout.tsx

This commit is contained in:
NotII
2025-04-06 15:34:14 +01:00
parent 9286fbb074
commit 6987015195

View File

@@ -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}</>;
}