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
This commit is contained in:
357
sites/deinesei.de/index.html
Normal file
357
sites/deinesei.de/index.html
Normal file
@@ -0,0 +1,357 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>deineSei.de — Wir bauen dir deine Seite</title>
|
||||
<meta name="description" content="deineSei.de — Deine Webseite, gebaut in Minuten. Domain, Design, Hosting — alles aus einer Hand.">
|
||||
<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=DM+Sans: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-card: #16161b;
|
||||
--border: #1e1e26;
|
||||
--text: #e8e8ed;
|
||||
--text-dim: #6e6e7a;
|
||||
--text-muted: #44444f;
|
||||
--accent: #6366f1;
|
||||
--accent-glow: rgba(99, 102, 241, 0.2);
|
||||
--accent-subtle: rgba(99, 102, 241, 0.08);
|
||||
--green: #22c55e;
|
||||
--green-glow: rgba(34, 197, 94, 0.12);
|
||||
}
|
||||
|
||||
html { scroll-behavior: smooth; }
|
||||
|
||||
body {
|
||||
font-family: 'DM Sans', 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; }
|
||||
.logo .deine { color: var(--text-dim); font-weight: 300; }
|
||||
.logo .sei { color: var(--accent); font-weight: 700; }
|
||||
.logo .de { color: var(--text-muted); }
|
||||
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, var(--accent-glow) 0%, transparent 70%);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.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; text-transform: uppercase;
|
||||
margin-bottom: 32px;
|
||||
background: rgba(17, 17, 21, 0.8);
|
||||
}
|
||||
|
||||
.hero-badge .dot {
|
||||
display: inline-block; width: 6px; height: 6px;
|
||||
background: var(--green); border-radius: 50%; margin-right: 8px;
|
||||
box-shadow: 0 0 8px var(--green-glow);
|
||||
position: relative; top: -1px;
|
||||
animation: pulse 2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
|
||||
|
||||
h1 {
|
||||
font-size: clamp(2.8rem, 6vw, 4.5rem);
|
||||
font-weight: 700; letter-spacing: -0.04em;
|
||||
line-height: 1.05; margin-bottom: 24px;
|
||||
}
|
||||
|
||||
h1 .deine { color: var(--text); }
|
||||
h1 .sei { color: var(--accent); }
|
||||
h1 .de { color: var(--text-dim); font-weight: 300; }
|
||||
|
||||
.hero p {
|
||||
font-size: 1.2rem; color: var(--text-dim);
|
||||
max-width: 540px; margin: 0 auto 48px;
|
||||
line-height: 1.7; font-weight: 300;
|
||||
}
|
||||
|
||||
.hero p 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-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.1);
|
||||
}
|
||||
.btn-primary:hover { background: #5558e6; transform: translateY(-1px); box-shadow: 0 0 50px var(--accent-glow); }
|
||||
|
||||
.btn-ghost { background: transparent; color: var(--text-dim); border: 1px solid var(--border); }
|
||||
.btn-ghost:hover { color: var(--text); border-color: #2a2a35; background: rgba(17,17,21,0.8); }
|
||||
|
||||
/* 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: 56px; font-weight: 300; line-height: 1.7; }
|
||||
.divider { height: 1px; background: var(--border); max-width: 860px; margin: 0 auto; }
|
||||
|
||||
/* Process */
|
||||
.process-steps {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.step {
|
||||
background: var(--bg-card); border: 1px solid var(--border);
|
||||
border-radius: 14px; padding: 32px;
|
||||
transition: all 0.3s; position: relative;
|
||||
}
|
||||
|
||||
.step::before {
|
||||
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
|
||||
background: linear-gradient(90deg, var(--accent), transparent);
|
||||
border-radius: 14px 14px 0 0; opacity: 0; transition: opacity 0.3s;
|
||||
}
|
||||
|
||||
.step:hover { border-color: #2a2a35; transform: translateY(-2px); }
|
||||
.step:hover::before { opacity: 1; }
|
||||
|
||||
.step-num {
|
||||
font-size: 2.5rem; font-weight: 700;
|
||||
color: var(--accent); opacity: 0.2; line-height: 1; margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
|
||||
.step p { color: var(--text-dim); font-size: 0.86rem; line-height: 1.6; font-weight: 300; }
|
||||
|
||||
/* Packages */
|
||||
.packages {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.package {
|
||||
background: var(--bg-card); border: 1px solid var(--border);
|
||||
border-radius: 14px; padding: 32px;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
.package.featured {
|
||||
border-color: var(--accent);
|
||||
background: linear-gradient(135deg, var(--bg-card) 0%, var(--accent-subtle) 100%);
|
||||
}
|
||||
|
||||
.package:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
|
||||
|
||||
.package-name {
|
||||
font-size: 0.65rem; font-weight: 600;
|
||||
letter-spacing: 0.15em; text-transform: uppercase;
|
||||
color: var(--accent); margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.package h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
|
||||
.package .price-note { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 20px; }
|
||||
|
||||
.package ul { list-style: none; }
|
||||
.package li {
|
||||
font-size: 0.84rem; color: var(--text-dim); font-weight: 300;
|
||||
padding: 6px 0; border-bottom: 1px solid rgba(30,30,38,0.5);
|
||||
}
|
||||
.package li:last-child { border-bottom: none; }
|
||||
.package li::before { content: '✓ '; color: var(--green); font-weight: 600; }
|
||||
|
||||
/* 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 { color: var(--text-muted); font-size: 0.75rem; }
|
||||
|
||||
@media (max-width: 768px) { .process-steps, .packages { grid-template-columns: 1fr; } }
|
||||
@media (max-width: 640px) { .hero { padding: 140px 0 80px; } section { padding: 64px 0; } }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav>
|
||||
<div class="container">
|
||||
<div class="logo"><span class="deine">deine</span><span class="sei">Sei</span><span class="de">.de</span></div>
|
||||
<a href="#kontakt">Projekt starten</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<div class="hero-badge">
|
||||
<span class="dot"></span>Jetzt verfügbar
|
||||
</div>
|
||||
<h1><span class="deine">deine</span><span class="sei">Sei</span><span class="de">.de</span></h1>
|
||||
<p>
|
||||
<strong>Deine Webseite</strong>, gebaut in Minuten. Nicht Wochen.
|
||||
Domain, Design, Hosting, SSL — alles aus einer Hand. Du sagst was du brauchst,
|
||||
wir liefern.
|
||||
</p>
|
||||
<div class="cta-group">
|
||||
<a href="#kontakt" class="btn btn-primary">Projekt starten</a>
|
||||
<a href="#wie" class="btn btn-ghost">So funktioniert's</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="divider"></div>
|
||||
|
||||
<section id="wie">
|
||||
<div class="container">
|
||||
<div class="section-label">Prozess</div>
|
||||
<h2>Von der Idee zur Seite. Schnell.</h2>
|
||||
<div class="section-desc">
|
||||
Kein WordPress-Dschungel, kein Baukasten-Frust.
|
||||
Du beschreibst dein Projekt — wir bauen es.
|
||||
</div>
|
||||
|
||||
<div class="process-steps">
|
||||
<div class="step">
|
||||
<div class="step-num">01</div>
|
||||
<h3>Briefing</h3>
|
||||
<p>Erzähl uns, worum es geht. Name, Branche, was die Seite können soll. Per Mail, WhatsApp oder Anruf.</p>
|
||||
</div>
|
||||
<div class="step">
|
||||
<div class="step-num">02</div>
|
||||
<h3>Design & Build</h3>
|
||||
<p>Wir designen und bauen deine Seite. Responsive, schnell, modern. Du bekommst einen Entwurf zum Reviewen.</p>
|
||||
</div>
|
||||
<div class="step">
|
||||
<div class="step-num">03</div>
|
||||
<h3>Live</h3>
|
||||
<p>Domain registriert, SSL-Zertifikat aktiv, Seite online. Fertig. Änderungen jederzeit möglich.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="divider"></div>
|
||||
|
||||
<section id="pakete">
|
||||
<div class="container">
|
||||
<div class="section-label">Pakete</div>
|
||||
<h2>Was passt zu dir?</h2>
|
||||
<div class="section-desc">
|
||||
Jede Seite ist individuell. Aber als Orientierung:
|
||||
</div>
|
||||
|
||||
<div class="packages">
|
||||
<div class="package">
|
||||
<div class="package-name">Visitenkarte</div>
|
||||
<h3>One-Pager</h3>
|
||||
<p class="price-note">Ab 99 €</p>
|
||||
<ul>
|
||||
<li>Eine Seite, alles drauf</li>
|
||||
<li>Domain inklusive (.de)</li>
|
||||
<li>HTTPS + Hosting</li>
|
||||
<li>Responsive Design</li>
|
||||
<li>Kontaktformular / E-Mail</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="package featured">
|
||||
<div class="package-name">Standard</div>
|
||||
<h3>Multi-Page</h3>
|
||||
<p class="price-note">Ab 299 €</p>
|
||||
<ul>
|
||||
<li>Mehrere Seiten</li>
|
||||
<li>Domain + E-Mail</li>
|
||||
<li>CMS für eigene Änderungen</li>
|
||||
<li>SEO-Grundlagen</li>
|
||||
<li>Analytics</li>
|
||||
<li>3 Monate Support</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="package">
|
||||
<div class="package-name">Custom</div>
|
||||
<h3>Maßarbeit</h3>
|
||||
<p class="price-note">Auf Anfrage</p>
|
||||
<ul>
|
||||
<li>Web-App / Portal</li>
|
||||
<li>API-Anbindungen</li>
|
||||
<li>Datenbanken</li>
|
||||
<li>Automatisierungen</li>
|
||||
<li>Laufende Betreuung</li>
|
||||
<li>Alles, was du brauchst</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="divider"></div>
|
||||
|
||||
<section id="kontakt" class="cta-section">
|
||||
<div class="container">
|
||||
<div class="section-label">Los geht's</div>
|
||||
<h2>Deine Seite wartet.</h2>
|
||||
<div class="section-desc">
|
||||
Schreib uns, was du brauchst. Wir melden uns innerhalb von 24 Stunden
|
||||
mit einem Vorschlag.
|
||||
</div>
|
||||
<a href="mailto:deinesei@msbls.de?subject=deineSei.de%20—%20Projekt" class="btn btn-primary">Projekt anfragen</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<p><span style="color:var(--text-dim)">deine</span><span style="color:var(--accent)">Sei</span>.de — ein Projekt von msbls.de</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user