Scaffold complete repo structure: - 28 static sites extracted from running containers on mlake - 2 dynamic sites (dasbes.de, dumusst.com) marked for separate handling - Template system with 6 templates (person-dark/light, product-dark, editorial, fun, minimal) - Shared CSS (variables, responsive, animations, noise overlay) - nginx config generator with multi-domain alias support - Build script with Docker-based nginx validation - add-site.sh helper for scaffolding new domains - Dockerfile for single nginx:alpine container Sites: clemensplassmann.de, danosi.de, deinesei.de, derkaiseristnackt.de, elefantenhor.de, fragina.de, frenchkis.de, ichbinaufbali.de, ichbinaufbarley.de, insain.de, julietensity.de, kainco.de (+keinco.de), kainstress.de, keinefreun.de, knzlmgmt.de, kopffrai.de, legalais.de, machesdocheinfach.de, mai-otto.de (+otto.flexsiebels.de, ottomatisch.de, ichbinotto.de), martinsiebels.de, matthiasbreier.de, osterai.de, paragraphenraiter.de, schulfrai.de, smartin3.de, sorgenfrai.de, vonschraitter.de, wartebitte.de Refs: otto#341
449 lines
15 KiB
HTML
449 lines
15 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">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">Smart in 3D</div>
|
|
|
|
<p class="hero-desc">
|
|
<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">Projekt anfragen</a>
|
|
<a href="#services" class="btn btn-ghost">Leistungen</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<section id="services">
|
|
<div class="container">
|
|
<div class="section-label">Leistungen</div>
|
|
<h2>Was wir drucken.</h2>
|
|
<div class="section-desc">
|
|
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>Prototypen</h3>
|
|
<p>Von der Idee zum Anfassen. Schnelle Iterationen, funktionale Tests, Design-Validierung.</p>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">📦</div>
|
|
<h3>Kleinserien</h3>
|
|
<p>10 bis 500 Stueck. Ohne Werkzeugkosten, ohne Mindestmengen, ohne Wartezeit.</p>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">⚙️</div>
|
|
<h3>Funktionsteile</h3>
|
|
<p>Mechanisch belastbar, massgenau, einsatzbereit. Fuer Maschinen, Geraete, Anlagen.</p>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">🎨</div>
|
|
<h3>Design-Objekte</h3>
|
|
<p>Architekturmodelle, Figuren, Kunst. Detailreich und in verschiedenen Materialien.</p>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">🔧</div>
|
|
<h3>Ersatzteile</h3>
|
|
<p>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>Beratung</h3>
|
|
<p>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">Prozess</div>
|
|
<h2>In 4 Schritten zum Teil.</h2>
|
|
<div class="section-desc">
|
|
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>Anfrage</h3>
|
|
<p>3D-Datei oder Skizze schicken. Wir beraten bei Material und Verfahren.</p>
|
|
</div>
|
|
<div class="process-step">
|
|
<div class="process-num">02</div>
|
|
<h3>Angebot</h3>
|
|
<p>Transparente Preise. Keine versteckten Kosten. Innerhalb von 24h.</p>
|
|
</div>
|
|
<div class="process-step">
|
|
<div class="process-num">03</div>
|
|
<h3>Druck</h3>
|
|
<p>Produktion auf professionellen Druckern. Qualitaetskontrolle bei jedem Teil.</p>
|
|
</div>
|
|
<div class="process-step">
|
|
<div class="process-num">04</div>
|
|
<h3>Versand</h3>
|
|
<p>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">Materialien</div>
|
|
<h2>Was wir verarbeiten.</h2>
|
|
<div class="section-desc">
|
|
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">TPU (flexibel)</span>
|
|
<span class="material-tag">Nylon</span>
|
|
<span class="material-tag">ASA (UV-bestaendig)</span>
|
|
<span class="material-tag">Carbon-Verbund</span>
|
|
<span class="material-tag">Holz-Filament</span>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<section id="kontakt" class="cta-section">
|
|
<div class="container">
|
|
<div class="section-label">Kontakt</div>
|
|
<h2>Idee? Her damit.</h2>
|
|
<div class="section-desc">
|
|
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">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;">Impressum</a></p>
|
|
</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;">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>
|
|
|
|
</body>
|
|
</html>
|