diff --git a/site/app/layout.tsx b/site/app/layout.tsx index f6724a3..9bc0f2b 100644 --- a/site/app/layout.tsx +++ b/site/app/layout.tsx @@ -41,7 +41,8 @@ export const metadata: Metadata = { images: ["/og.png"], }, icons: { icon: "/icon.svg", apple: "/icon.svg" }, - manifest: "/manifest.webmanifest", + // No web-app manifest on the marketing site — it's a plain SEO site, not an + // installable PWA. Only the game app (app.bargevasat.ir) is a PWA. }; export const viewport: Viewport = { diff --git a/site/app/manifest.ts b/site/app/manifest.ts deleted file mode 100644 index 6b731d6..0000000 --- a/site/app/manifest.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { MetadataRoute } from "next"; - -export const dynamic = "force-static"; - -export default function manifest(): MetadataRoute.Manifest { - return { - name: "برگ وسط — بازی حکم آنلاین", - short_name: "برگ وسط", - description: "بازی حکم ایرانی آنلاین با دوستان و هوش مصنوعی.", - start_url: "/", - display: "standalone", - background_color: "#070b18", - theme_color: "#070b18", - dir: "rtl", - lang: "fa", - icons: [ - { src: "/icon.svg", sizes: "any", type: "image/svg+xml", purpose: "any" }, - ], - }; -}