Self-injecting script following impressum.js pattern: - data-tone attribute: playful | serious | minimal | none - Reads document.documentElement.lang for KI (de) vs AI (en) - MutationObserver on lang attr for i18n toggle compat - All tones link to msbls.de/ki - Injected into all 54 custom sites with data-tone="playful" - Template infra: base.html includes script, render.sh reads disclosure.tone - disclosure.tone added to 3 example site.yaml files Implements m/onepager#2
455 lines
20 KiB
HTML
455 lines
20 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>sMARTin 3D — Smart in 3D</title>
|
|
<meta name="description" content="sMARTin 3D — Dein 3D-Druck-Shop. Individuelle Teile, Prototypen, Kleinserien. Smart gedacht, praezise gedruckt.">
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🧊</text></svg>">
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500&display=swap');
|
|
|
|
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
:root {
|
|
--bg: #0a0a0c;
|
|
--bg-elevated: #111115;
|
|
--bg-card: #16161b;
|
|
--border: #1e1e26;
|
|
--text: #e8e8ed;
|
|
--text-dim: #6e6e7a;
|
|
--text-muted: #44444f;
|
|
--orange: #f97316;
|
|
--orange-glow: rgba(249, 115, 22, 0.2);
|
|
--orange-subtle: rgba(249, 115, 22, 0.08);
|
|
--blue: #38bdf8;
|
|
--blue-glow: rgba(56, 189, 248, 0.15);
|
|
}
|
|
|
|
html { scroll-behavior: smooth; }
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
line-height: 1.6;
|
|
-webkit-font-smoothing: antialiased;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body::before {
|
|
content: '';
|
|
position: fixed;
|
|
inset: 0;
|
|
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
|
|
pointer-events: none;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.container { max-width: 860px; margin: 0 auto; padding: 0 24px; }
|
|
|
|
/* Nav */
|
|
nav {
|
|
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
|
|
padding: 20px 0;
|
|
background: rgba(10, 10, 12, 0.8);
|
|
backdrop-filter: blur(20px);
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
nav .container { display: flex; justify-content: space-between; align-items: center; }
|
|
.logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 600; }
|
|
.logo .s { color: var(--text-dim); font-weight: 300; text-transform: lowercase; }
|
|
.logo .martin { color: var(--orange); }
|
|
.logo .three { color: var(--blue); font-weight: 700; }
|
|
.logo .d { color: var(--text); }
|
|
nav a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
|
|
nav a:hover { color: var(--text); }
|
|
|
|
/* Hero */
|
|
.hero {
|
|
padding: 180px 0 120px;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 60px; left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 700px; height: 500px;
|
|
background:
|
|
radial-gradient(ellipse at 40% 50%, var(--orange-glow) 0%, transparent 60%),
|
|
radial-gradient(ellipse at 60% 40%, var(--blue-glow) 0%, transparent 60%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* 3D cube animation */
|
|
.cube-wrapper {
|
|
perspective: 600px;
|
|
width: 80px; height: 80px;
|
|
margin: 0 auto 40px;
|
|
}
|
|
|
|
.cube {
|
|
width: 80px; height: 80px;
|
|
position: relative;
|
|
transform-style: preserve-3d;
|
|
animation: rotateCube 12s linear infinite;
|
|
}
|
|
|
|
@keyframes rotateCube {
|
|
from { transform: rotateX(-20deg) rotateY(0deg); }
|
|
to { transform: rotateX(-20deg) rotateY(360deg); }
|
|
}
|
|
|
|
.cube-face {
|
|
position: absolute;
|
|
width: 80px; height: 80px;
|
|
border: 1px solid var(--orange);
|
|
background: rgba(249, 115, 22, 0.04);
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.cube-face:nth-child(1) { transform: translateZ(40px); }
|
|
.cube-face:nth-child(2) { transform: rotateY(180deg) translateZ(40px); }
|
|
.cube-face:nth-child(3) { transform: rotateY(90deg) translateZ(40px); }
|
|
.cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(40px); }
|
|
.cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(40px); }
|
|
.cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(40px); }
|
|
|
|
h1 {
|
|
font-family: 'Space Grotesk', sans-serif;
|
|
font-size: clamp(2.8rem, 6vw, 4.5rem);
|
|
font-weight: 700;
|
|
letter-spacing: -0.04em;
|
|
line-height: 1.05;
|
|
margin-bottom: 8px;
|
|
position: relative;
|
|
}
|
|
|
|
h1 .s { color: var(--text-dim); font-weight: 300; }
|
|
h1 .martin { color: var(--orange); }
|
|
h1 .three { color: var(--blue); }
|
|
|
|
.tagline {
|
|
font-family: 'Space Grotesk', sans-serif;
|
|
font-size: 1rem;
|
|
color: var(--text-dim);
|
|
letter-spacing: 0.15em;
|
|
text-transform: uppercase;
|
|
font-weight: 300;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.hero-desc {
|
|
font-size: 1.15rem;
|
|
color: var(--text-dim);
|
|
max-width: 540px;
|
|
margin: 0 auto 48px;
|
|
line-height: 1.7;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.hero-desc strong { color: var(--text); font-weight: 500; }
|
|
|
|
.cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
|
|
|
|
.btn {
|
|
display: inline-flex; align-items: center; gap: 8px;
|
|
padding: 14px 28px; border-radius: 10px;
|
|
font-family: 'Space Grotesk', sans-serif;
|
|
font-size: 0.9rem; font-weight: 500;
|
|
text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--orange); color: #fff;
|
|
box-shadow: 0 0 30px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.1);
|
|
}
|
|
.btn-primary:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 0 50px var(--orange-glow);
|
|
filter: brightness(1.1);
|
|
}
|
|
|
|
.btn-ghost { background: transparent; color: var(--text-dim); border: 1px solid var(--border); }
|
|
.btn-ghost:hover { color: var(--text); border-color: #2a2a35; background: var(--bg-elevated); }
|
|
|
|
/* Sections */
|
|
section { padding: 100px 0; }
|
|
.section-label { font-family: 'Space Grotesk', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
|
|
h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 600; letter-spacing: -0.03em; margin-bottom: 16px; }
|
|
.section-desc { color: var(--text-dim); font-size: 1rem; max-width: 520px; margin-bottom: 56px; font-weight: 300; line-height: 1.7; }
|
|
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), var(--orange), var(--border), transparent); max-width: 860px; margin: 0 auto; }
|
|
|
|
/* Services */
|
|
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
|
|
|
|
.service-card {
|
|
background: var(--bg-card); border: 1px solid var(--border);
|
|
border-radius: 14px; padding: 32px;
|
|
transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
|
|
}
|
|
.service-card:hover {
|
|
border-color: var(--orange);
|
|
box-shadow: 0 0 30px rgba(249, 115, 22, 0.08);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.service-icon { font-size: 1.8rem; margin-bottom: 16px; }
|
|
.service-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
|
|
.service-card p { color: var(--text-dim); font-size: 0.84rem; line-height: 1.6; font-weight: 300; }
|
|
|
|
/* Process */
|
|
.process-steps {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 24px;
|
|
text-align: center;
|
|
}
|
|
|
|
.process-step { position: relative; }
|
|
|
|
.process-num {
|
|
font-family: 'Space Grotesk', sans-serif;
|
|
font-size: 2rem; font-weight: 700;
|
|
color: var(--orange); opacity: 0.3;
|
|
line-height: 1; margin-bottom: 12px;
|
|
}
|
|
|
|
.process-step h3 {
|
|
font-family: 'Space Grotesk', sans-serif;
|
|
font-size: 0.85rem; font-weight: 600; margin-bottom: 6px;
|
|
}
|
|
|
|
.process-step p {
|
|
color: var(--text-dim); font-size: 0.8rem; font-weight: 300; line-height: 1.5;
|
|
}
|
|
|
|
/* Materials */
|
|
.material-tags {
|
|
display: flex; gap: 10px; flex-wrap: wrap;
|
|
}
|
|
|
|
.material-tag {
|
|
padding: 8px 18px;
|
|
background: var(--bg-card); border: 1px solid var(--border);
|
|
border-radius: 100px;
|
|
font-family: 'Space Grotesk', sans-serif;
|
|
font-size: 0.8rem; font-weight: 500;
|
|
color: var(--text-dim);
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.material-tag:hover { border-color: var(--orange); color: var(--orange); }
|
|
|
|
/* CTA */
|
|
.cta-section { text-align: center; padding: 80px 0 120px; }
|
|
.cta-section h2 { margin-bottom: 12px; }
|
|
.cta-section .section-desc { margin: 0 auto 40px; }
|
|
|
|
footer { padding: 40px 0; text-align: center; border-top: 1px solid var(--border); }
|
|
footer p { font-family: 'Space Grotesk', sans-serif; color: var(--text-muted); font-size: 0.75rem; }
|
|
|
|
@media (max-width: 768px) {
|
|
.services-grid { grid-template-columns: 1fr; }
|
|
.process-steps { grid-template-columns: repeat(2, 1fr); }
|
|
}
|
|
@media (max-width: 640px) {
|
|
.hero { padding: 140px 0 80px; }
|
|
section { padding: 64px 0; }
|
|
.process-steps { grid-template-columns: 1fr; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<nav>
|
|
<div class="container">
|
|
<div class="logo"><span class="s">s</span><span class="martin">MARTIN</span> <span class="three">3</span><span class="d">D</span></div>
|
|
<a href="#kontakt" data-de="Anfrage" data-en="Request">Anfrage</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<section class="hero">
|
|
<div class="container">
|
|
<div class="cube-wrapper">
|
|
<div class="cube">
|
|
<div class="cube-face"></div>
|
|
<div class="cube-face"></div>
|
|
<div class="cube-face"></div>
|
|
<div class="cube-face"></div>
|
|
<div class="cube-face"></div>
|
|
<div class="cube-face"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<h1><span class="s">s</span><span class="martin">MARTIN</span> <span class="three">3</span>D</h1>
|
|
<div class="tagline" data-de="Smart in 3D" data-en="Smart in 3D">Smart in 3D</div>
|
|
|
|
<p class="hero-desc" data-de="<strong>3D-Druck</strong> fuer Ideen, die nicht warten koennen. Vom Prototyp bis zur Kleinserie — praezise, schnell und genau so, wie du es brauchst." data-en="<strong>3D printing</strong> for ideas that can't wait. From prototype to small series — precise, fast, and exactly as you need it.">
|
|
<strong>3D-Druck</strong> fuer Ideen, die nicht warten koennen.
|
|
Vom Prototyp bis zur Kleinserie — praezise, schnell und genau so,
|
|
wie du es brauchst.
|
|
</p>
|
|
|
|
<div class="cta-group">
|
|
<a href="#kontakt" class="btn btn-primary" data-de="Projekt anfragen" data-en="Request project">Projekt anfragen</a>
|
|
<a href="#services" class="btn btn-ghost" data-de="Leistungen" data-en="Services">Leistungen</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<section id="services">
|
|
<div class="container">
|
|
<div class="section-label" data-de="Leistungen" data-en="Services">Leistungen</div>
|
|
<h2 data-de="Was wir drucken." data-en="What we print.">Was wir drucken.</h2>
|
|
<div class="section-desc" data-de="Egal ob Einzelstueck oder Serie — jedes Teil wird individuell fuer deinen Anwendungsfall optimiert." data-en="Whether one-off or series — every part is individually optimized for your use case.">
|
|
Egal ob Einzelstueck oder Serie — jedes Teil wird individuell
|
|
fuer deinen Anwendungsfall optimiert.
|
|
</div>
|
|
|
|
<div class="services-grid">
|
|
<div class="service-card">
|
|
<div class="service-icon">🔩</div>
|
|
<h3 data-de="Prototypen" data-en="Prototypes">Prototypen</h3>
|
|
<p data-de="Von der Idee zum Anfassen. Schnelle Iterationen, funktionale Tests, Design-Validierung." data-en="From idea to touchable reality. Fast iterations, functional tests, design validation.">Von der Idee zum Anfassen. Schnelle Iterationen, funktionale Tests, Design-Validierung.</p>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">📦</div>
|
|
<h3 data-de="Kleinserien" data-en="Small series">Kleinserien</h3>
|
|
<p data-de="10 bis 500 Stueck. Ohne Werkzeugkosten, ohne Mindestmengen, ohne Wartezeit." data-en="10 to 500 pieces. No tooling costs, no minimum quantities, no waiting time.">10 bis 500 Stueck. Ohne Werkzeugkosten, ohne Mindestmengen, ohne Wartezeit.</p>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">⚙️</div>
|
|
<h3 data-de="Funktionsteile" data-en="Functional parts">Funktionsteile</h3>
|
|
<p data-de="Mechanisch belastbar, massgenau, einsatzbereit. Fuer Maschinen, Geraete, Anlagen." data-en="Mechanically resilient, dimensionally accurate, ready to use. For machines, devices, systems.">Mechanisch belastbar, massgenau, einsatzbereit. Fuer Maschinen, Geraete, Anlagen.</p>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">🎨</div>
|
|
<h3 data-de="Design-Objekte" data-en="Design objects">Design-Objekte</h3>
|
|
<p data-de="Architekturmodelle, Figuren, Kunst. Detailreich und in verschiedenen Materialien." data-en="Architectural models, figurines, art. Detailed and in various materials.">Architekturmodelle, Figuren, Kunst. Detailreich und in verschiedenen Materialien.</p>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">🔧</div>
|
|
<h3 data-de="Ersatzteile" data-en="Spare parts">Ersatzteile</h3>
|
|
<p data-de="Das Teil gibt's nicht mehr? Wir drucken es nach. Reverse Engineering inklusive." data-en="Part no longer available? We print it. Reverse engineering included.">Das Teil gibt's nicht mehr? Wir drucken es nach. Reverse Engineering inklusive.</p>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">💡</div>
|
|
<h3 data-de="Beratung" data-en="Consulting">Beratung</h3>
|
|
<p data-de="Welches Material? Welches Verfahren? Wir helfen bei der Entscheidung — bevor gedruckt wird." data-en="Which material? Which process? We help with the decision — before printing begins.">Welches Material? Welches Verfahren? Wir helfen bei der Entscheidung — bevor gedruckt wird.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<section>
|
|
<div class="container">
|
|
<div class="section-label" data-de="Prozess" data-en="Process">Prozess</div>
|
|
<h2 data-de="In 4 Schritten zum Teil." data-en="4 steps to your part.">In 4 Schritten zum Teil.</h2>
|
|
<div class="section-desc" data-de="Kein komplizierter Bestellprozess. Schick uns dein Modell oder deine Idee — wir kuemmern uns um den Rest." data-en="No complicated ordering process. Send us your model or your idea — we take care of the rest.">
|
|
Kein komplizierter Bestellprozess. Schick uns dein Modell oder deine Idee —
|
|
wir kuemmern uns um den Rest.
|
|
</div>
|
|
|
|
<div class="process-steps">
|
|
<div class="process-step">
|
|
<div class="process-num">01</div>
|
|
<h3 data-de="Anfrage" data-en="Request">Anfrage</h3>
|
|
<p data-de="3D-Datei oder Skizze schicken. Wir beraten bei Material und Verfahren." data-en="Send a 3D file or sketch. We advise on material and process.">3D-Datei oder Skizze schicken. Wir beraten bei Material und Verfahren.</p>
|
|
</div>
|
|
<div class="process-step">
|
|
<div class="process-num">02</div>
|
|
<h3 data-de="Angebot" data-en="Quote">Angebot</h3>
|
|
<p data-de="Transparente Preise. Keine versteckten Kosten. Innerhalb von 24h." data-en="Transparent prices. No hidden costs. Within 24 hours.">Transparente Preise. Keine versteckten Kosten. Innerhalb von 24h.</p>
|
|
</div>
|
|
<div class="process-step">
|
|
<div class="process-num">03</div>
|
|
<h3 data-de="Druck" data-en="Print">Druck</h3>
|
|
<p data-de="Produktion auf professionellen Druckern. Qualitaetskontrolle bei jedem Teil." data-en="Production on professional printers. Quality control for every part.">Produktion auf professionellen Druckern. Qualitaetskontrolle bei jedem Teil.</p>
|
|
</div>
|
|
<div class="process-step">
|
|
<div class="process-num">04</div>
|
|
<h3 data-de="Versand" data-en="Shipping">Versand</h3>
|
|
<p data-de="Sicher verpackt, schnell geliefert. Oder Abholung vor Ort." data-en="Securely packed, delivered quickly. Or pick up on site.">Sicher verpackt, schnell geliefert. Oder Abholung vor Ort.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<section>
|
|
<div class="container">
|
|
<div class="section-label" data-de="Materialien" data-en="Materials">Materialien</div>
|
|
<h2 data-de="Was wir verarbeiten." data-en="What we work with.">Was wir verarbeiten.</h2>
|
|
<div class="section-desc" data-de="Verschiedene Materialien fuer verschiedene Anforderungen." data-en="Different materials for different requirements.">
|
|
Verschiedene Materialien fuer verschiedene Anforderungen.
|
|
</div>
|
|
|
|
<div class="material-tags">
|
|
<span class="material-tag">PLA</span>
|
|
<span class="material-tag">PETG</span>
|
|
<span class="material-tag">ABS</span>
|
|
<span class="material-tag" data-de="TPU (flexibel)" data-en="TPU (flexible)">TPU (flexibel)</span>
|
|
<span class="material-tag">Nylon</span>
|
|
<span class="material-tag" data-de="ASA (UV-bestaendig)" data-en="ASA (UV-resistant)">ASA (UV-bestaendig)</span>
|
|
<span class="material-tag" data-de="Carbon-Verbund" data-en="Carbon composite">Carbon-Verbund</span>
|
|
<span class="material-tag" data-de="Holz-Filament" data-en="Wood filament">Holz-Filament</span>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<section id="kontakt" class="cta-section">
|
|
<div class="container">
|
|
<div class="section-label" data-de="Kontakt" data-en="Contact">Kontakt</div>
|
|
<h2 data-de="Idee? Her damit." data-en="Got an idea? Let's hear it.">Idee? Her damit.</h2>
|
|
<div class="section-desc" data-de="Schick uns dein 3D-Modell, eine Skizze oder einfach eine Beschreibung. Wir melden uns innerhalb von 24 Stunden." data-en="Send us your 3D model, a sketch, or just a description. We'll get back to you within 24 hours.">
|
|
Schick uns dein 3D-Modell, eine Skizze oder einfach eine Beschreibung.
|
|
Wir melden uns innerhalb von 24 Stunden.
|
|
</div>
|
|
<a href="mailto:smartin3d@msbls.de" class="btn btn-primary" data-de="Projekt anfragen" data-en="Request project">Projekt anfragen</a>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<p><span style="color:var(--text-dim)">s</span><span style="color:var(--orange)">MARTIN</span> <span style="color:var(--blue)">3</span>D — smartin3.de</p>
|
|
<p style="margin-top: 24px; font-size: 0.65rem; color: var(--text-muted); line-height: 1.8;"><a href="#impressum" style="color: var(--text-muted); text-decoration: none;" data-de="Impressum" data-en="Legal notice">Impressum</a></p>
|
|
<div style="text-align:center;margin-top:16px;">
|
|
<button data-i18n-toggle title="Maschinell übersetzt / Machine-translated — German is the original." style="background:none;border:1px solid var(--text-muted,#444);color:var(--text-muted,#444);font-size:0.65rem;letter-spacing:0.1em;padding:4px 12px;border-radius:4px;cursor:pointer;">EN</button>
|
|
<br><small data-de="Maschinell übersetzt" data-en="Machine-translated" style="color:var(--text-muted,#444);font-size:0.6rem;opacity:0.5;">Maschinell übersetzt</small>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<section id="impressum" style="padding: 60px 0 80px; border-top: 1px solid var(--border);">
|
|
<div class="container" style="max-width: 540px;">
|
|
<h2 style="font-size: 1.2rem; margin-bottom: 24px;" data-de="Impressum" data-en="Legal notice">Impressum</h2>
|
|
<p style="font-size: 0.85rem; color: var(--text-dim); line-height: 1.8; font-weight: 300;">
|
|
Martin Siebels<br>
|
|
Leyer Str. 38<br>
|
|
49076 Osnabrück<br><br>
|
|
E-Mail: <a href="mailto:Martin_Siebels@web.de" style="color: var(--orange); text-decoration: none;">Martin_Siebels@web.de</a>
|
|
</p>
|
|
</div>
|
|
</section>
|
|
|
|
<script src="/shared/ai-disclosure.js" data-tone="playful"></script>
|
|
<script src="/shared/i18n.js"></script>
|
|
</body>
|
|
</html>
|