Files
mAi 6f5de542ab feat: initial mono-repo with 30 vanity domain sites
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
2026-03-29 13:20:27 +02:00

397 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>Martin Siebels — Profil</title>
<meta name="description" content="Martin Siebels — Osnabrück. Berufliches Profil.">
<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'>M</text></svg>">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&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;
--accent: #3b82f6;
--accent-glow: rgba(59, 130, 246, 0.15);
--accent-subtle: rgba(59, 130, 246, 0.08);
--orange: #f97316;
--orange-glow: rgba(249, 115, 22, 0.15);
}
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', -apple-system, 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 {
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-size: 1.1rem; font-weight: 600; letter-spacing: -0.02em; }
.logo .accent { color: var(--accent); }
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: 80px; left: 50%;
transform: translateX(-50%);
width: 600px; height: 400px;
background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
pointer-events: none;
}
.monogram {
width: 96px; height: 96px; border-radius: 50%;
background: var(--bg-card); border: 1px solid var(--border);
display: flex; align-items: center; justify-content: center;
margin: 0 auto 40px;
font-size: 1.6rem; font-weight: 600; color: var(--accent);
}
.hero-badge {
display: inline-block;
padding: 6px 16px;
border: 1px solid var(--border);
border-radius: 100px;
font-size: 0.75rem; font-weight: 500;
color: var(--text-dim);
letter-spacing: 0.06em;
margin-bottom: 32px;
background: var(--bg-elevated);
}
.hero-badge .dot {
display: inline-block; width: 6px; height: 6px;
background: var(--accent); border-radius: 50%; margin-right: 8px;
position: relative; top: -1px;
}
h1 {
font-size: clamp(2.6rem, 6vw, 4rem);
font-weight: 700; letter-spacing: -0.04em;
line-height: 1.1; margin-bottom: 16px;
}
h1 .accent { color: var(--accent); }
.hero-subtitle {
font-size: 1.15rem; color: var(--text-dim);
max-width: 600px; margin: 0 auto 20px;
line-height: 1.7; font-weight: 300;
}
.hero-subtitle strong { color: var(--text); font-weight: 500; }
.hero-tags {
display: flex; gap: 8px; justify-content: center;
flex-wrap: wrap; margin-bottom: 48px;
}
.tag {
padding: 4px 14px; border: 1px solid var(--border);
border-radius: 100px; font-size: 0.72rem; font-weight: 500;
color: var(--text-muted); background: var(--bg-elevated);
}
.tag.highlight { color: var(--accent); border-color: rgba(59, 130, 246, 0.25); }
.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-size: 0.9rem; font-weight: 500;
text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
}
.btn-primary {
background: var(--accent); color: #fff;
box-shadow: 0 0 30px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 50px var(--accent-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-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
h2 { 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: 48px; font-weight: 300; line-height: 1.7; }
.divider { height: 1px; background: var(--border); max-width: 860px; margin: 0 auto; }
/* Profile section */
.profile-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.profile-text p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
.profile-text p:last-child { margin-bottom: 0; }
.detail-list { display: flex; flex-direction: column; gap: 14px; }
.detail-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; }
.detail-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.detail-value { font-size: 0.9rem; color: var(--text-dim); font-weight: 300; }
/* Skills grid */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: 14px; padding: 28px;
transition: border-color 0.3s, box-shadow 0.3s;
}
.card:hover { border-color: #2a2a35; box-shadow: 0 8px 40px rgba(0,0,0,0.3); }
.card.primary { border-color: rgba(59, 130, 246, 0.2); background: linear-gradient(135deg, var(--bg-card), rgba(59, 130, 246, 0.03)); }
.card.primary:hover { border-color: rgba(59, 130, 246, 0.35); }
.card-icon { font-size: 1.4rem; margin-bottom: 16px; }
.card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: 0.86rem; line-height: 1.6; font-weight: 300; }
/* Side project teaser */
.teaser {
background: var(--bg-card);
border: 1px solid rgba(249, 115, 22, 0.2);
border-radius: 16px;
padding: 48px;
display: grid;
grid-template-columns: 1fr auto;
gap: 40px;
align-items: center;
transition: border-color 0.3s;
}
.teaser:hover { border-color: rgba(249, 115, 22, 0.4); }
.teaser-label {
font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em;
text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.teaser h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 8px; }
.teaser h3 .orange { color: var(--orange); }
.teaser p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; font-weight: 300; max-width: 480px; }
.btn-orange {
background: var(--orange); color: #0a0a0c;
box-shadow: 0 0 30px var(--orange-glow);
white-space: nowrap;
}
.btn-orange:hover { transform: translateY(-1px); box-shadow: 0 0 50px var(--orange-glow); filter: brightness(1.1); }
/* Footer */
footer { padding: 40px 0; text-align: center; border-top: 1px solid var(--border); }
footer p { color: var(--text-muted); font-size: 0.75rem; }
@media (max-width: 768px) {
.card-grid { grid-template-columns: 1fr; }
.profile-section { grid-template-columns: 1fr; gap: 32px; }
.teaser { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 640px) {
.hero { padding: 140px 0 80px; }
section { padding: 64px 0; }
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(16px); }
to { opacity: 1; transform: translateY(0); }
}
.hero > .container > * { animation: fadeUp 0.8s ease forwards; opacity: 0; }
.hero > .container > *:nth-child(1) { animation-delay: 0.1s; }
.hero > .container > *:nth-child(2) { animation-delay: 0.3s; }
.hero > .container > *:nth-child(3) { animation-delay: 0.5s; }
.hero > .container > *:nth-child(4) { animation-delay: 0.7s; }
.hero > .container > *:nth-child(5) { animation-delay: 0.9s; }
.hero > .container > *:nth-child(6) { animation-delay: 1.1s; }
</style>
</head>
<body>
<nav>
<div class="container">
<div class="logo">Martin <span class="accent">Siebels</span></div>
<a href="#kontakt">Kontakt</a>
</div>
</nav>
<section class="hero">
<div class="container">
<div class="monogram">MS</div>
<div class="hero-badge"><span class="dot"></span>Osnabrück</div>
<h1>Martin<br><span class="accent">Siebels</span></h1>
<p class="hero-subtitle">
<strong>Hands-on Mentalitaet</strong> trifft technisches Verstaendnis.
Strukturiert im Beruf, kreativ in der Freizeit — immer mit dem Anspruch,
Dinge besser zu machen.
</p>
<div class="hero-tags">
<span class="tag highlight">Technik</span>
<span class="tag highlight">Handwerk</span>
<span class="tag">Problemloesung</span>
<span class="tag">Teamwork</span>
<span class="tag">Osnabrück</span>
</div>
<div class="cta-group">
<a href="#kontakt" class="btn btn-primary">Kontakt aufnehmen</a>
<a href="#profil" class="btn btn-ghost">Mehr erfahren</a>
</div>
</div>
</section>
<div class="divider"></div>
<section id="profil">
<div class="container">
<div class="section-label">Profil</div>
<h2>Wer ich bin.</h2>
<div class="profile-section">
<div class="profile-text">
<p>
Martin Siebels kommt aus Osnabrück und bringt eine Kombination
aus technischem Know-how, handwerklichem Geschick und
strukturierter Arbeitsweise mit.
</p>
<p>
Ob im Beruf oder im eigenen Projekt — der Anspruch ist immer
der gleiche: Dinge richtig machen, pragmatisch loesen und
dabei nie aufhoeren, Neues zu lernen.
</p>
<p>
Neben seiner beruflichen Taetigkeit betreibt Martin mit
sMARTin 3D einen eigenen 3D-Druck-Service — von der Idee
ueber den Prototyp bis zum fertigen Teil.
</p>
</div>
<div class="detail-list">
<div class="detail-card">
<div class="detail-label">Standort</div>
<div class="detail-value">Osnabrück, Niedersachsen</div>
</div>
<div class="detail-card">
<div class="detail-label">Jahrgang</div>
<div class="detail-value">1989</div>
</div>
<div class="detail-card">
<div class="detail-label">E-Mail</div>
<div class="detail-value">martin_siebels@web.de</div>
</div>
<div class="detail-card">
<div class="detail-label">Side Project</div>
<div class="detail-value">sMARTin 3D — 3D-Druck-Service</div>
</div>
</div>
</div>
</div>
</section>
<div class="divider"></div>
<section id="kompetenzen">
<div class="container">
<div class="section-label">Kompetenzen</div>
<h2>Was ich mitbringe.</h2>
<div class="section-desc">
Eine Mischung aus beruflicher Erfahrung, technischem Verstaendnis
und der Faehigkeit, Probleme pragmatisch zu loesen.
</div>
<div class="card-grid">
<div class="card primary">
<div class="card-icon">🔧</div>
<h3>Technik</h3>
<p>Technisches Verstaendnis von der Mechanik bis zur Digitalisierung. Schnelle Auffassungsgabe fuer neue Systeme.</p>
</div>
<div class="card primary">
<div class="card-icon">🤝</div>
<h3>Teamwork</h3>
<p>Zuverlaessig im Team, klar in der Kommunikation. Packt an wo es noetig ist.</p>
</div>
<div class="card">
<div class="card-icon">📐</div>
<h3>Struktur</h3>
<p>Organisiertes Arbeiten, saubere Prozesse. Auch unter Druck den Ueberblick behalten.</p>
</div>
<div class="card">
<div class="card-icon">💡</div>
<h3>Problemloesung</h3>
<p>Kreative Loesungen fuer praktische Probleme. Lieber machen als lange reden.</p>
</div>
<div class="card">
<div class="card-icon">🖨️</div>
<h3>3D-Druck & CAD</h3>
<p>Erfahrung in Design, Materialwahl und Fertigung. Vom digitalen Modell zum physischen Teil.</p>
</div>
<div class="card">
<div class="card-icon">📈</div>
<h3>Lernbereitschaft</h3>
<p>Staendig am Lernen, egal ob neue Software, neue Verfahren oder neue Herausforderungen.</p>
</div>
</div>
</div>
</section>
<div class="divider"></div>
<section>
<div class="container">
<div class="teaser">
<div>
<div class="teaser-label">Side Project</div>
<h3>s<span class="orange">MARTIN</span> 3D</h3>
<p>
Neben dem Beruf betreibt Martin einen eigenen 3D-Druck-Service.
Prototypen, Kleinserien, Funktionsteile, Design-Objekte —
smart gedacht, praezise gedruckt.
</p>
</div>
<a href="https://smartin3.de" target="_blank" class="btn btn-orange">Zum 3D-Shop</a>
</div>
</div>
</section>
<div class="divider"></div>
<section id="kontakt" style="text-align: center; padding: 80px 0 120px;">
<div class="container">
<div class="section-label">Kontakt</div>
<h2>Interesse?</h2>
<div class="section-desc" style="margin: 0 auto 40px;">
Berufliche Anfragen, Projektideen oder einfach Hallo sagen.
</div>
<div class="cta-group">
<a href="mailto:martin_siebels@web.de" class="btn btn-primary">E-Mail schreiben</a>
</div>
</div>
</section>
<footer>
<div class="container">
<p>martinsiebels.de</p>
</div>
</footer>
</body>
</html>