feat: add qr-1.svg template integration for QR stand generator

This commit is contained in:
AyrisAI
2026-08-20 18:43:15 +03:00
parent e63de8584d
commit 04863c8a78
4 changed files with 23 additions and 0 deletions
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 1.6 MiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 1.6 MiB

+20
View File
@@ -15,6 +15,7 @@ export interface QrStandPreset {
subText: string;
dividerColor: string;
categories: string[];
svgTemplateUrl?: string;
}
export const QR_STAND_PRESETS: Record<string, QrStandPreset> = {
@@ -36,6 +37,25 @@ export const QR_STAND_PRESETS: Record<string, QrStandPreset> = {
dividerColor: "rgba(255, 255, 255, 0.25)",
categories: ["BURGERS", "FRIES", "SHAKES", "VEGAN OPTIONS"],
},
"custom-svg-1": {
key: "custom-svg-1",
name: "Urban Premium SVG",
categoryName: "Özel SVG Vektör Şablon",
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",
},
"la-maison": {
key: "la-maison",
name: "La Maison Gold",
+1
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 1.6 MiB