first commit

This commit is contained in:
2026-08-07 09:40:16 +03:30
commit 0c51b30059
37 changed files with 5146 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
import type { BadgeTone } from "@/components/Badge";
// برچسب‌ها و تن‌هایِ نشانکیِ مشترک بین صفحه‌ی تراکنش‌ها و داشبورد.
export const KIND_LABEL: Record<string, string> = {
coin: "سکه",
ticket: "بلیط",
booster: "بوستر",
vip: "VIP",
};
export const KIND_TONE: Record<string, BadgeTone> = {
coin: "gold",
ticket: "blue",
booster: "purple",
vip: "green",
};
export const STATUS_LABEL: Record<string, string> = {
verified: "پرداخت‌شده",
pending: "در انتظار",
};
export const STATUS_TONE: Record<string, BadgeTone> = {
verified: "green",
pending: "gray",
};
export const STORE_LABEL: Record<string, string> = {
bazaar: "بازار",
myket: "مایکت",
};