feat: add qr-2.svg template preset (Classic Bistro QR Stand 2)

This commit is contained in:
AyrisAI
2026-08-20 18:49:43 +03:00
parent 984a41d0e5
commit 0a2aae68db
4 changed files with 24 additions and 2 deletions
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 357 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 357 KiB

+21 -2
View File
@@ -21,8 +21,8 @@ export interface QrStandPreset {
export const QR_STAND_PRESETS: Record<string, QrStandPreset> = { export const QR_STAND_PRESETS: Record<string, QrStandPreset> = {
urban: { urban: {
key: "urban", key: "urban",
name: "The Urban Burger QR Stand", name: "The Urban Burger QR Stand 1",
categoryName: "Özel Masa Kartı Şablonu", categoryName: "Özel Masa Kartı Şablonu 1",
bgGradient: "radial-gradient(circle at 50% 50%, #1c3e2b 0%, #0e2016 100%)", bgGradient: "radial-gradient(circle at 50% 50%, #1c3e2b 0%, #0e2016 100%)",
plaqueBg: "linear-gradient(135deg, #a64d2a 0%, #8e3f20 100%)", plaqueBg: "linear-gradient(135deg, #a64d2a 0%, #8e3f20 100%)",
plaqueColor: "#a64d2a", plaqueColor: "#a64d2a",
@@ -38,4 +38,23 @@ export const QR_STAND_PRESETS: Record<string, QrStandPreset> = {
categories: ["BURGERS", "FRIES", "SHAKES", "VEGAN OPTIONS"], categories: ["BURGERS", "FRIES", "SHAKES", "VEGAN OPTIONS"],
svgTemplateUrl: "/qr-1.svg", 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",
},
}; };
+1
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 357 KiB