/** * ============================================================================ * CONFIGURATOR – CENTRAL CONFIGURATION FILE * ============================================================================ * This file contains ALL content, texts, answer options, scoring points, * product data, and links for the configurator. It can be edited without * touching any HTML/CSS/JS code. * * IMPORTANT: After any change to this file, reload the page in the browser * to see the changes. * ============================================================================ */ window.CONFIGURATOR_CONFIG = { // -------------------------------------------------------------------------- // 1) INTRO SCREEN (start screen before the first question) // -------------------------------------------------------------------------- intro: { heading: "Finde dein passendes Foldable", text: "Beantworte ein paar kurze Fragen und finde heraus, welches Smartphone am besten zu deinen täglichen Bedürfnissen passt.", buttonLabel: "Jetzt starten", image: "visuals/hero-kv.jpg", imageMobile: "visuals/hero-kv-m.jpg", imageAlt: "" }, // -------------------------------------------------------------------------- // 2) QUESTIONS // -------------------------------------------------------------------------- // Each question needs: // - id: unique key (don't duplicate) // - stepLabel: short name shown in the progress bar at the top // - question: the actual question (heading) // - subtext: hint text below the question // - image: image next to/above the answers // - imageMobile: optional mobile image (used on <=680px) // - imageLayout: "wide" (764x382) or "small" (372x382) – controls the // fixed size of the image, and the answer buttons stretch to fill // the remaining width/height next to it. // - answers: exactly 3 answer options, each with a "scores" object. // // scores { B, H, Q } = the points this answer gives to the three // products. The points from all 6 of a user's answers are summed per // product – the product with the highest total wins (see products // below for B/H/Q). In case of a tie, multiple products are // recommended. // // These numbers come from the scoring-matrix spreadsheet and should // only be changed if the underlying matrix changes. // -------------------------------------------------------------------------- questions: [ { id: "video", stepLabel: "Video", question: "Wie oft schaust du dir Videos auf\u00A0deinem\u00A0 Smartphone an (z. B. Filme oder YouTube)?", subtext: "Wähle eine Antwort – danach geht es automatisch weiter.", image: "visuals/01_Video.png", imageMobile: "visuals/01_Video-sm.png", imageAlt: "", imageLayout: "wide", answers: [ { label: "Gar nicht", scores: { B: 10, H: 4, Q: 5 } }, { label: "Manchmal", scores: { B: 3, H: 7, Q: 5 } }, { label: "Häufig", scores: { B: 0, H: 10, Q: 6 } } ] }, { id: "work", stepLabel: "Arbeit", question: "Nutzt du dein Smartphone auch für die Arbeit?", subtext: "Wähle eine Antwort – danach geht es automatisch weiter.", image: "visuals/02_work.png", imageMobile: "visuals/02_work.png", imageAlt: "", imageLayout: "small", answers: [ { label: "Nein, ausschließlich privat", scores: { B: 10, H: 4, Q: 0 } }, { label: "Manchmal", scores: { B: 2, H: 7, Q: 4 } }, { label: "Sehr intensiv", scores: { B: 1, H: 4, Q: 10 } } ] }, { id: "camera", stepLabel: "Kamera", question: "Wie wichtig ist dir das Fotografieren?", subtext: "Wähle eine Antwort – danach geht es automatisch weiter.", image: "visuals/03_Foto-sm.png", imageMobile: "visuals/03_Foto-sm.png", imageAlt: "", imageLayout: "small", answers: [ { label: "Ich mache nur wenige Alltagsbilder", scores: { B: 8, H: 8, Q: 2 } }, { label: "Ich brauche eine erstklassige Kamera", scores: { B: 5, H: 5, Q: 5 } }, { label: "Für mich kommt nur die absolut beste Kamera in Frage", scores: { B: 3, H: 3, Q: 10 } } ] }, { id: "size", stepLabel: "Größe", question: "Muss dein Smartphone handlich sein?", subtext: "Wähle eine Antwort – danach geht es automatisch weiter.", image: "visuals/04_pocket.png", imageMobile: "visuals/04_pocket.png", imageAlt: "", imageLayout: "small", answers: [ { label: "Auf jeden Fall, meine Taschen sind klein", scores: { B: 10, H: 7, Q: 4 } }, { label: "Das ist mir egal, aber bitte nicht zu groß", scores: { B: 3, H: 6, Q: 3 } }, { label: "Ein großes Display ist mir am allerwichtigsten", scores: { B: 2, H: 3, Q: 10 } } ] }, { id: "selfie", stepLabel: "Selfie", question: "Bist du ein echter Selfie-Fan?", subtext: "Wähle eine Antwort – danach geht es automatisch weiter.", image: "visuals/05_selfie.png", imageMobile: "visuals/05_selfie.png", imageAlt: "", imageLayout: "small", answers: [ { label: "Nein, überhaupt nicht", scores: { B: 2, H: 6, Q: 6 } }, { label: "Nur manchmal, wenn es sich gerade anbietet", scores: { B: 7, H: 5, Q: 5 } }, { label: "Oh ja, am liebsten ständig mit meinen Freunden", scores: { B: 10, H: 3, Q: 3 } } ] }, { id: "social", stepLabel: "Social", question: "Wie viele Stunden verbringst du täglich in den sozialen Medien?", subtext: "Wähle eine Antwort – danach geht es automatisch weiter.", image: "visuals/06_social media.png", imageMobile: "visuals/06_social media.png", imageAlt: "", imageLayout: "wide", answers: [ { label: "Wenig", scores: { B: 6, H: 3, Q: 6 } }, { label: "1-2 Stunden", scores: { B: 4, H: 7, Q: 4 } }, { label: "2+ Stunden", scores: { B: 3, H: 10, Q: 3 } } ] } ], // -------------------------------------------------------------------------- // 3) PRODUCTS (results) // -------------------------------------------------------------------------- // The keys "B", "H", "Q" must match the keys used in the "scores" // objects above. Each product needs a name, badge, description, image, // and a link to the product page (pdpUrl). // // All 3 products are always shown on the result screen, side by side // (desktop) or as a swipeable carousel (mobile) — whichever product(s) // scored highest are highlighted with the blue "Unsere Empfehlung" // card. "badge" is the small pill label shown on every card (e.g. // "Kompakt & alltagstauglich"), independent of whether it wins. // // datasheetRating: energy-efficiency letter (A-G) shown as a colored // EU-style rating flag next to "Produktdatenblatt". // datasheetIcons: list of small spec icons shown next to the rating // flag (e.g. charging speed, charger-not-included). Point these at // whichever icons in visuals/icons/ are correct for each product. // // NOTE: pdpUrl links intentionally open in a NEW TAB (target="_blank") // so they don't load inside the iframe that partners use to embed this // configurator. // -------------------------------------------------------------------------- products: { Q: { id: "Q8", name: "Galaxy Z Fold8 Ultra", badge: "", description: ` Next Level Productivity. Zwei Apps in der Side-by-Side-Ansicht auf dem großen Display für mehr Produktivität nutzen – links im Browser recherchieren, rechts Link im Chat teilen. `, image: "visuals/Q8.jpg", imageAlt: "", pdpUrl: "https://www.expert.de/shop/unsere-produkte/telekom-navigation/handys-smartphones/smartphones/15076068926-galaxy-z-fold8-ultra-256gb-5g-violet-shadow-smartphone.html", datasheetUrl: "https://cdn.expert.de/f4/5f/f8/c45409ea81cea3ac87aa5d0661b6ff5133/Abbildung_2644561.png.png", datasheetRating: "A", datasheetIcons: [ "visuals/icons/icon-charger-not.svg.svg", "visuals/icons/icon-charger-10-60-usb-pd.svg.svg" ] }, H: { id: "H8", name: "Galaxy Z Fold8", badge: "", description: ` Next Level Full Screen Content. Zusammengeklappt durch Social Contents scrollen und aufgeklappt vollflächig in Filme eintauchen – ein Display-Format ideal auf Inhalte abgestimmt. `, image: "visuals/H8.jpg", imageAlt: "", pdpUrl: "https://www.expert.de/shop/unsere-produkte/telekom-navigation/handys-smartphones/smartphones/15076061926-galaxy-z-fold8-256gb-5g-graphite-smartphone.html", datasheetUrl: "https://cdn.expert.de/01/4e/c9/b9f9bc513ca00ceb6b5ad8c238084e05a8/Abbildung_2644445.png.png", datasheetRating: "A", datasheetIcons: [ "visuals/icons/icon-charger-not.svg.svg", "visuals/icons/icon-charger-10-60-usb-pd.svg.svg" ] }, B: { id: "B8", name: "Galaxy Z Flip8", badge: "", description: ` Next Level Pocketability. Das bisher dünnste und leichteste Galaxy Z Flip ist dein kompakter und stylischer Begleiter für den Alltag. `, image: "visuals/B8.jpg", imageAlt: "", pdpUrl: "https://www.expert.de/shop/unsere-produkte/telekom-navigation/handys-smartphones/smartphones/15076054926-galaxy-z-flip8-256gb-5g-cream-smartphone.html", datasheetUrl: "https://cdn.expert.de/f0/60/8d/f055249133dc9efdda6d3a9e73cfce8c79/Abbildung_2644188.png.png", datasheetRating: "A", datasheetIcons: [ "visuals/icons/icon-charger-not.svg.svg", "visuals/icons/icon-charger-10-60-usb-pd.svg.svg" ] }, }, // -------------------------------------------------------------------------- // 4) TEXTS / LABELS (result screen, buttons, progress bar) // -------------------------------------------------------------------------- labels: { stepperResultLabel: "Ergebnis", resultHeading: "Dein passendes Foldable", resultHeadingMultiple: "Deine passenden faltbaren Matches", recommendationLabel: "Unsere Empfehlung für dich", recommendationLabel2: "Unsere 2. Empfehlung für dich", requirementsLabel: "Deine Anforderungen", datasheetLabel: "Produktdatenblatt", pdpButtonLabel: "Jetzt kaufen", backButtonLabel: "Zurück", restartButtonLabel: "Prozess erneut starten" } };