diff --git a/app/dashboard/storefront/customers/page.tsx b/app/dashboard/storefront/customers/page.tsx index e759651..d359afd 100644 --- a/app/dashboard/storefront/customers/page.tsx +++ b/app/dashboard/storefront/customers/page.tsx @@ -51,6 +51,17 @@ import { DropdownMenuContent, DropdownMenuItem, } from "@/components/ui/dropdown-menu"; +import type { Metadata, Viewport } from 'next'; + +export const metadata: Metadata = { + title: "Customer Management - Ember", +}; + +export const viewport: Viewport = { + themeColor: "#000000", + initialScale: 1, + width: 'device-width', +}; export default function CustomerManagementPage() { const router = useRouter();