feat(qr-stands): set qr-4 as exclusive vector stand template

This commit is contained in:
AyrisAI
2026-08-20 23:25:19 +03:00
parent 4ce6505a4d
commit a0cb04b2c6
15 changed files with 243 additions and 105 deletions
+17 -56
View File
@@ -19,62 +19,23 @@ export interface QrStandPreset {
}
export const QR_STAND_PRESETS: Record<string, QrStandPreset> = {
urban: {
key: "urban",
name: "The Urban Burger QR Stand 1",
categoryName: "Özel Masa Kartı Şablonu 1",
bgGradient: "radial-gradient(circle at 50% 50%, #1c3e2b 0%, #0e2016 100%)",
plaqueBg: "linear-gradient(135deg, #a64d2a 0%, #8e3f20 100%)",
plaqueColor: "#a64d2a",
borderAccent: "rgba(255, 255, 255, 0.15)",
qrBg: "#f8f3eb",
qrColor: "#a64d2a",
logoBorder: "#f5be72",
logoBg: "rgba(166, 77, 42, 0.8)",
accentText: "#f5be72",
headerText: "#ffffff",
subText: "rgba(255, 255, 255, 0.9)",
dividerColor: "rgba(255, 255, 255, 0.25)",
categories: ["BURGERS", "FRIES", "SHAKES", "VEGAN OPTIONS"],
svgTemplateUrl: "/qr-1.svg",
},
"custom-svg-2": {
key: "custom-svg-2",
name: "Classic Bistro QR Stand 2",
categoryName: "Özel Masa Kartı Şablonu 2",
bgGradient: "radial-gradient(circle at 50% 50%, #18181b 0%, #09090b 100%)",
plaqueBg: "linear-gradient(135deg, #1c1917 0%, #0c0a09 100%)",
plaqueColor: "#1c1917",
borderAccent: "rgba(200, 169, 107, 0.4)",
qrBg: "#faf8f5",
qrColor: "#1c1917",
logoBorder: "#c8a96b",
logoBg: "rgba(28, 25, 23, 0.9)",
accentText: "#c8a96b",
headerText: "#ffffff",
subText: "#d6d3d1",
dividerColor: "rgba(200, 169, 107, 0.3)",
categories: ["BAŞLANGIÇLAR", "ANA YEMEKLER", "TATLILAR", "İÇECEKLER"],
svgTemplateUrl: "/qr-2.svg",
},
"custom-svg-3": {
key: "custom-svg-3",
name: "Modern Gourmet QR Stand 3",
categoryName: "Özel Masa Kartı Şablonu 3",
bgGradient: "radial-gradient(circle at 50% 50%, #111827 0%, #030712 100%)",
plaqueBg: "linear-gradient(135deg, #1f2937 0%, #111827 100%)",
plaqueColor: "#1f2937",
borderAccent: "rgba(234, 179, 8, 0.4)",
"qr-4": {
key: "qr-4",
name: "Gourmet Gold Luxury Stand",
categoryName: "Özel Masa Kartı Şablonu",
bgGradient: "radial-gradient(circle at 50% 50%, #451A03 0%, #1c0a02 100%)",
plaqueBg: "linear-gradient(135deg, #000000 0%, #111111 100%)",
plaqueColor: "#000000",
borderAccent: "#D4AF37",
qrBg: "#ffffff",
qrColor: "#111827",
logoBorder: "#eab308",
logoBg: "rgba(31, 41, 55, 0.9)",
accentText: "#eab308",
headerText: "#ffffff",
subText: "#9ca3af",
dividerColor: "rgba(234, 179, 8, 0.3)",
categories: ["ÇORBALAR", "MEZELER", "IZGARALAR", "KAHVE & TATLILAR"],
svgTemplateUrl: "/qr-3.svg",
qrColor: "#111111",
logoBorder: "#D4AF37",
logoBg: "rgba(0, 0, 0, 0.8)",
accentText: "#FFD700",
headerText: "#FFFFFF",
subText: "#A1A1AA",
dividerColor: "rgba(212, 175, 55, 0.3)",
categories: ["BAŞLANGIÇLAR", "ANA YEMEKLER", "TATLILAR", "İÇECEKLER"],
svgTemplateUrl: "/qr-4.svg",
},
};