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
634 lines
18 KiB
HTML
634 lines
18 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>keinefreun.de — Offizielle Seite der Freundlosigkeit</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=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
*, *::before, *::after {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
:root {
|
|
--bg: #0d0d0f;
|
|
--bg-card: #151519;
|
|
--bg-card-hover: #1a1a20;
|
|
--text: #e8e6e3;
|
|
--text-dim: #7a7880;
|
|
--text-dimmer: #4a4850;
|
|
--accent: #8b5cf6;
|
|
--accent-dim: #6d3fd4;
|
|
--accent-glow: rgba(139, 92, 246, 0.15);
|
|
--warm: #f59e0b;
|
|
--border: #222228;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', -apple-system, sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
line-height: 1.6;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* ---- HERO ---- */
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
padding: 2rem;
|
|
position: relative;
|
|
}
|
|
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -20%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 600px;
|
|
height: 600px;
|
|
background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
|
|
.hero > * {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.domain {
|
|
font-family: 'Space Mono', monospace;
|
|
font-size: clamp(0.85rem, 1.5vw, 1rem);
|
|
color: var(--accent);
|
|
letter-spacing: 0.3em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: clamp(3rem, 8vw, 7rem);
|
|
font-weight: 900;
|
|
line-height: 1.05;
|
|
margin-bottom: 0.3em;
|
|
max-width: 800px;
|
|
}
|
|
|
|
.hero h1 em {
|
|
font-style: italic;
|
|
color: var(--accent);
|
|
}
|
|
|
|
.hero-sub {
|
|
font-size: clamp(1rem, 2vw, 1.35rem);
|
|
color: var(--text-dim);
|
|
max-width: 500px;
|
|
margin: 0 auto 3rem;
|
|
font-weight: 300;
|
|
}
|
|
|
|
/* ---- COUNTER ---- */
|
|
.counter-section {
|
|
padding: 5rem 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.counter-label {
|
|
font-family: 'Space Mono', monospace;
|
|
font-size: 0.8rem;
|
|
letter-spacing: 0.25em;
|
|
text-transform: uppercase;
|
|
color: var(--text-dim);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.counter-number {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: clamp(8rem, 20vw, 16rem);
|
|
font-weight: 900;
|
|
line-height: 1;
|
|
color: var(--accent);
|
|
text-shadow: 0 0 80px var(--accent-glow);
|
|
}
|
|
|
|
.counter-footnote {
|
|
font-size: 0.85rem;
|
|
color: var(--text-dimmer);
|
|
margin-top: 1rem;
|
|
font-style: italic;
|
|
}
|
|
|
|
/* ---- REASONS ---- */
|
|
.reasons {
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
padding: 5rem 2rem;
|
|
}
|
|
|
|
.reasons h2 {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: clamp(2rem, 4vw, 3rem);
|
|
margin-bottom: 3rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.reason {
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
align-items: flex-start;
|
|
margin-bottom: 2.5rem;
|
|
padding: 1.5rem;
|
|
border-radius: 12px;
|
|
border: 1px solid var(--border);
|
|
background: var(--bg-card);
|
|
transition: background 0.2s, border-color 0.2s;
|
|
}
|
|
|
|
.reason:hover {
|
|
background: var(--bg-card-hover);
|
|
border-color: var(--accent-dim);
|
|
}
|
|
|
|
.reason-num {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: 2.5rem;
|
|
font-weight: 900;
|
|
color: var(--accent);
|
|
line-height: 1;
|
|
flex-shrink: 0;
|
|
width: 50px;
|
|
}
|
|
|
|
.reason h3 {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
margin-bottom: 0.3rem;
|
|
}
|
|
|
|
.reason p {
|
|
font-size: 0.95rem;
|
|
color: var(--text-dim);
|
|
font-weight: 300;
|
|
}
|
|
|
|
/* ---- TESTIMONIALS ---- */
|
|
.testimonials {
|
|
padding: 5rem 2rem;
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.testimonials h2 {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: clamp(2rem, 4vw, 3rem);
|
|
margin-bottom: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.testimonials-sub {
|
|
text-align: center;
|
|
color: var(--text-dimmer);
|
|
font-size: 0.9rem;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.testimonial-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.testimonial {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
padding: 2rem;
|
|
position: relative;
|
|
}
|
|
|
|
.testimonial::before {
|
|
content: '\201E';
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: 4rem;
|
|
color: var(--accent);
|
|
position: absolute;
|
|
top: 0.8rem;
|
|
left: 1.2rem;
|
|
line-height: 1;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.testimonial blockquote {
|
|
font-size: 1rem;
|
|
font-style: italic;
|
|
line-height: 1.7;
|
|
margin-bottom: 1.2rem;
|
|
padding-top: 1rem;
|
|
color: var(--text);
|
|
}
|
|
|
|
.testimonial-author {
|
|
font-family: 'Space Mono', monospace;
|
|
font-size: 0.75rem;
|
|
color: var(--text-dimmer);
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.testimonial-author span {
|
|
display: block;
|
|
font-size: 0.7rem;
|
|
margin-top: 0.2rem;
|
|
color: var(--text-dimmer);
|
|
opacity: 0.6;
|
|
}
|
|
|
|
/* ---- FAQ ---- */
|
|
.faq {
|
|
max-width: 650px;
|
|
margin: 0 auto;
|
|
padding: 5rem 2rem;
|
|
}
|
|
|
|
.faq h2 {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: clamp(2rem, 4vw, 3rem);
|
|
margin-bottom: 3rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.faq-item {
|
|
margin-bottom: 2rem;
|
|
padding-bottom: 2rem;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.faq-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.faq-q {
|
|
font-weight: 600;
|
|
font-size: 1.05rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.faq-a {
|
|
color: var(--text-dim);
|
|
font-weight: 300;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
/* ---- CTA ---- */
|
|
.cta {
|
|
text-align: center;
|
|
padding: 6rem 2rem;
|
|
position: relative;
|
|
}
|
|
|
|
.cta::before {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 500px;
|
|
height: 400px;
|
|
background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.cta > * {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.cta h2 {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: clamp(2rem, 5vw, 3.5rem);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.cta p {
|
|
color: var(--text-dim);
|
|
font-weight: 300;
|
|
max-width: 450px;
|
|
margin: 0 auto 2.5rem;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-block;
|
|
font-family: 'Space Mono', monospace;
|
|
font-size: 0.85rem;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
padding: 1rem 2.5rem;
|
|
border: 1px solid var(--accent);
|
|
color: var(--accent);
|
|
text-decoration: none;
|
|
border-radius: 6px;
|
|
transition: background 0.2s, color 0.2s;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn:hover {
|
|
background: var(--accent);
|
|
color: var(--bg);
|
|
}
|
|
|
|
/* ---- DIVIDER ---- */
|
|
.divider {
|
|
width: 60px;
|
|
height: 1px;
|
|
background: var(--border);
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* ---- FOOTER ---- */
|
|
footer {
|
|
text-align: center;
|
|
padding: 3rem 2rem 4rem;
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
|
|
footer p {
|
|
font-size: 0.8rem;
|
|
color: var(--text-dimmer);
|
|
font-weight: 300;
|
|
}
|
|
|
|
footer .footer-domain {
|
|
font-family: 'Space Mono', monospace;
|
|
color: var(--text-dim);
|
|
font-size: 0.75rem;
|
|
letter-spacing: 0.15em;
|
|
margin-bottom: 0.8rem;
|
|
}
|
|
|
|
/* ---- SCROLL INDICATOR ---- */
|
|
.scroll-hint {
|
|
position: absolute;
|
|
bottom: 2.5rem;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
color: var(--text-dimmer);
|
|
font-size: 0.7rem;
|
|
letter-spacing: 0.2em;
|
|
text-transform: uppercase;
|
|
font-family: 'Space Mono', monospace;
|
|
animation: pulse 2s ease-in-out infinite;
|
|
}
|
|
|
|
.scroll-hint::after {
|
|
content: '';
|
|
width: 1px;
|
|
height: 30px;
|
|
background: linear-gradient(to bottom, var(--text-dimmer), transparent);
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { opacity: 0.4; }
|
|
50% { opacity: 0.8; }
|
|
}
|
|
|
|
/* ---- STAT STRIP ---- */
|
|
.stats {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 3rem;
|
|
padding: 3rem 2rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.stat {
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-num {
|
|
font-family: 'Space Mono', monospace;
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
color: var(--accent);
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 0.75rem;
|
|
color: var(--text-dimmer);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
margin-top: 0.3rem;
|
|
}
|
|
|
|
/* ---- RESPONSIVE ---- */
|
|
@media (max-width: 600px) {
|
|
.reason {
|
|
flex-direction: column;
|
|
gap: 0.8rem;
|
|
}
|
|
|
|
.reason-num {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.stats {
|
|
gap: 2rem;
|
|
}
|
|
|
|
.testimonial-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- HERO -->
|
|
<section class="hero">
|
|
<div class="domain">keinefreun.de</div>
|
|
<h1>Keine <em>Freunde.</em></h1>
|
|
<p class="hero-sub">
|
|
Die offizielle Webseite für alle, die samstags frei haben.
|
|
Immer.
|
|
</p>
|
|
<div class="scroll-hint">Runterscrollen</div>
|
|
</section>
|
|
|
|
<!-- COUNTER -->
|
|
<section class="counter-section">
|
|
<div class="counter-label">Aktuelle Freunde-Anzahl</div>
|
|
<div class="counter-number" id="counter">0</div>
|
|
<div class="counter-footnote">* Stand: gerade eben. Wird stündlich aktualisiert. Ändert sich nie.</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<!-- STATS -->
|
|
<div class="stats">
|
|
<div class="stat">
|
|
<div class="stat-num">0</div>
|
|
<div class="stat-label">Geburtstagseinladungen</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="stat-num">365</div>
|
|
<div class="stat-label">Abende allein / Jahr</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="stat-num">100%</div>
|
|
<div class="stat-label">Sofa-Verfügbarkeit</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="stat-num">∞</div>
|
|
<div class="stat-label">Netflix ohne Diskussion</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<!-- REASONS -->
|
|
<section class="reasons">
|
|
<h2>Warum man keine Freunde braucht</h2>
|
|
|
|
<div class="reason">
|
|
<div class="reason-num">1</div>
|
|
<div>
|
|
<h3>Niemand sagt deinen Umzug ab</h3>
|
|
<p>Weil dich sowieso niemand fragt. Problem gelöst. Du buchst einfach ein Umzugsunternehmen wie ein normaler Erwachsener.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="reason">
|
|
<div class="reason-num">2</div>
|
|
<div>
|
|
<h3>Die Fernbedienung gehört dir</h3>
|
|
<p>Kein „Lass uns was zusammen schauen“. Kein Kompromiss. Staffel 4 True Crime um 3 Uhr nachts? Dein gutes Recht.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="reason">
|
|
<div class="reason-num">3</div>
|
|
<div>
|
|
<h3>Keine Gruppenrestaurant-Buchungen</h3>
|
|
<p>„Wir sind 7. Nein, 6. Warte, Sandra kommt doch. Also 8.“ — Probleme, die du nie haben wirst.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="reason">
|
|
<div class="reason-num">4</div>
|
|
<div>
|
|
<h3>Spotify Wrapped ist ehrlich</h3>
|
|
<p>Niemand urteilt über deine 847 Streams von demselben Song. Deine Daten, deine Scham, dein Geheimnis.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="reason">
|
|
<div class="reason-num">5</div>
|
|
<div>
|
|
<h3>Du sparst ein Vermögen</h3>
|
|
<p>Keine Geburtstage, keine Hochzeiten, keine Geschenke. Das gesparte Geld investierst du in — naja, in dich. Wer sonst.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<!-- TESTIMONIALS -->
|
|
<section class="testimonials">
|
|
<h2>Was unsere Nicht-Freunde sagen</h2>
|
|
<p class="testimonials-sub">Hinweis: Keine dieser Personen existiert.</p>
|
|
|
|
<div class="testimonial-grid">
|
|
<div class="testimonial">
|
|
<blockquote>
|
|
Seit ich auf keinefreun.de bin, habe ich endlich akzeptiert, dass meine Zimmerpflanze mein engster Vertrauter ist. Sie hört zu. Sie urteilt nicht. Sie stirbt langsam.
|
|
</blockquote>
|
|
<div class="testimonial-author">
|
|
— Thorsten, 34
|
|
<span>Softwareentwickler & Ficus-Besitzer</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="testimonial">
|
|
<blockquote>
|
|
Ich habe mir selbst eine Sprachnachricht geschickt, um zu testen, ob mein Handy noch funktioniert. Tut es. Schreibt nur niemand.
|
|
</blockquote>
|
|
<div class="testimonial-author">
|
|
— Melanie, 29
|
|
<span>Senior Alleinsein-Consultant</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="testimonial">
|
|
<blockquote>
|
|
Mein Therapeut hat mich gefragt, wie es meinem sozialen Umfeld geht. Ich habe gelacht. Er hat nicht gelacht. Der Termin wurde verlängert.
|
|
</blockquote>
|
|
<div class="testimonial-author">
|
|
— Jens, 41
|
|
<span>Hobbyphilosoph & Tiefkühlpizza-Gourmet</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<!-- FAQ -->
|
|
<section class="faq">
|
|
<h2>Häufig gestellte Fragen</h2>
|
|
|
|
<div class="faq-item">
|
|
<div class="faq-q">Ist das hier ernst gemeint?</div>
|
|
<div class="faq-a">Definiere „ernst“. Definiere „gemeint“. Definiere „hier“. Siehst du, genau deshalb hat man keine Freunde.</div>
|
|
</div>
|
|
|
|
<div class="faq-item">
|
|
<div class="faq-q">Kann ich hier Freunde finden?</div>
|
|
<div class="faq-a">Nein. Das ist explizit nicht der Zweck dieser Seite. Bitte lies den Domainnamen noch einmal langsam vor.</div>
|
|
</div>
|
|
|
|
<div class="faq-item">
|
|
<div class="faq-q">Ich habe aber Freunde?</div>
|
|
<div class="faq-a">Das ist keine Frage. Und wir glauben dir nicht. Aber schön für dich.</div>
|
|
</div>
|
|
|
|
<div class="faq-item">
|
|
<div class="faq-q">Gibt es einen Newsletter?</div>
|
|
<div class="faq-a">An wen sollten wir den schicken? Genau.</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<!-- CTA -->
|
|
<section class="cta">
|
|
<h2>Bereit, niemanden kennenzulernen?</h2>
|
|
<p>Tritt unserer Community bei. Sie besteht aus dir. Das war's.</p>
|
|
<a class="btn" href="mailto:niemand@keinefreun.de">Kontakt (lol)</a>
|
|
</section>
|
|
|
|
<!-- FOOTER -->
|
|
<footer>
|
|
<div class="footer-domain">keinefreun.de</div>
|
|
<p>Ein Projekt von jemandem ohne Freunde</p>
|
|
<p style="margin-top: 0.5rem; opacity: 0.4;">© 2026 — Alle Rechte vorbehalten. Nicht dass es jemanden interessiert.</p>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|