b2in/public/_cabinet/offers/slide-1-goya-hero.html
2026-02-20 17:57:50 +01:00

105 lines
3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CABINET GOYA Sideboard</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./shared-styles.css">
<style>
/* Slide-spezifische Anpassungen */
.hero {
background:
radial-gradient(ellipse at 30% 40%, rgba(0, 159, 227, 0.05), transparent 60%),
linear-gradient(165deg, #f8f8f8, #ffffff);
}
.hero.has-image {
background: url('../assets/goya1.jpg') center/cover no-repeat;
}
.price {
color: #111;
}
.uvp-strike {
text-decoration: line-through;
opacity: 0.6;
}
.hero-badge {
font-size: 24px;
font-weight: 500;
padding: 16px 28px;
}
</style>
</head>
<body>
<main class="screen">
<article class="slide" data-duration="10000">
<!-- HEADER -->
<header class="header">
<div class="brand">
<img src="./logo-cabinet-300.png" alt="CABINET" class="brand-logo">
</div>
</header>
<!-- HERO -->
<section class="hero has-image">
<span class="hero-badge">Einzelstück</span>
</section>
<!-- BOTTOM: Info + QR -->
<section class="bottom">
<div class="info">
<div class="info-content">
<p class="eyebrow">Hersteller: Sudbrock</p>
<h1 class="title large">GOYA Sideboard</h1>
</div>
<div class="price-block">
<div class="price-row">
<span class="price">489 €</span>
<div class="price-note">
statt 4.744 €
</div>
</div>
</div>
</div>
<aside class="qr-box">
<div class="qr-header">
<p class="qr-title">Reservieren</p>
<p class="qr-subtitle">QR scannen</p>
</div>
<div class="qr-code-wrapper">
<img id="qr-code" src="" alt="QR Code">
</div>
<p class="qr-contact">0521 98620100<br>Tel. oder WhatsApp</p>
</aside>
</section>
</article>
</main>
<script>
// QR-Code Konfiguration GOYA Produkt-/Reservierungsseite
const QR_URL = 'https://cabinet-bielefeld.de';
function generateQR(targetUrl) {
const size = '300x300';
const color = '000000';
const bg = 'ffffff';
const qrApiUrl = `https://api.qrserver.com/v1/create-qr-code/?size=${size}&color=${color}&bgcolor=${bg}&margin=8&data=${encodeURIComponent(targetUrl)}`;
const qrImg = document.getElementById('qr-code');
if (qrImg) qrImg.src = qrApiUrl;
}
document.addEventListener('DOMContentLoaded', () => generateQR(QR_URL));
</script>
</body>
</html>