This commit is contained in:
NotII
2025-04-06 15:39:37 +01:00
parent 80fb9b0be2
commit a651bd3ec4
6 changed files with 72 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
import { Suspense } from "react";
import Dashboard from "@/components/dashboard/dashboard";
import { Metadata } from "next";
import { Metadata, Viewport } from "next";
import PromotionsList from "@/components/dashboard/promotions/PromotionsList";
import PromotionsPageSkeleton from "@/components/dashboard/promotions/PromotionsPageSkeleton";
@@ -9,6 +9,15 @@ export const metadata: Metadata = {
description: "Manage promotion codes for your store on Ember Market"
};
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 PromotionsPage() {
return (
<Dashboard>