22 lines
673 B
TypeScript
22 lines
673 B
TypeScript
|
|
import { MetadataRoute } from "next";
|
||
|
|
|
||
|
|
export default function manifest(): MetadataRoute.Manifest {
|
||
|
|
return {
|
||
|
|
name: "Meezi — میزی",
|
||
|
|
short_name: "Meezi",
|
||
|
|
description: "پلتفرم هوشمند مدیریت کافه و رستوران",
|
||
|
|
start_url: "/fa",
|
||
|
|
display: "standalone",
|
||
|
|
background_color: "#ffffff",
|
||
|
|
theme_color: "#16a34a",
|
||
|
|
orientation: "portrait",
|
||
|
|
icons: [
|
||
|
|
{ src: "/icon-192.png", sizes: "192x192", type: "image/png", purpose: "maskable" },
|
||
|
|
{ src: "/icon-512.png", sizes: "512x512", type: "image/png", purpose: "any" },
|
||
|
|
],
|
||
|
|
categories: ["business", "productivity"],
|
||
|
|
lang: "fa",
|
||
|
|
dir: "rtl",
|
||
|
|
};
|
||
|
|
}
|