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
637 lines
24 KiB
HTML
637 lines
24 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 data-de="Keine <em>Freunde.</em>" data-en="No <em>Friends.</em>">Keine <em>Freunde.</em></h1>
|
|
<p class="hero-sub" data-de="Die offizielle Webseite für alle, die samstags frei haben. Immer." data-en="The official website for everyone who's free on Saturdays. Always.">
|
|
Die offizielle Webseite für alle, die samstags frei haben.
|
|
Immer.
|
|
</p>
|
|
<div class="scroll-hint" data-de="Runterscrollen" data-en="Scroll down">Runterscrollen</div>
|
|
</section>
|
|
|
|
<!-- COUNTER -->
|
|
<section class="counter-section">
|
|
<div class="counter-label" data-de="Aktuelle Freunde-Anzahl" data-en="Current friend count">Aktuelle Freunde-Anzahl</div>
|
|
<div class="counter-number" id="counter">0</div>
|
|
<div class="counter-footnote" data-de="* Stand: gerade eben. Wird stündlich aktualisiert. Ändert sich nie." data-en="* As of: just now. Updated hourly. Never changes.">* 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" data-de="Geburtstagseinladungen" data-en="Birthday invitations">Geburtstagseinladungen</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="stat-num">365</div>
|
|
<div class="stat-label" data-de="Abende allein / Jahr" data-en="Evenings alone / year">Abende allein / Jahr</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="stat-num">100%</div>
|
|
<div class="stat-label" data-de="Sofa-Verfügbarkeit" data-en="Sofa availability">Sofa-Verfügbarkeit</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="stat-num">∞</div>
|
|
<div class="stat-label" data-de="Netflix ohne Diskussion" data-en="Netflix without debate">Netflix ohne Diskussion</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<!-- REASONS -->
|
|
<section class="reasons">
|
|
<h2 data-de="Warum man keine Freunde braucht" data-en="Why you don't need friends">Warum man keine Freunde braucht</h2>
|
|
|
|
<div class="reason">
|
|
<div class="reason-num">1</div>
|
|
<div>
|
|
<h3 data-de="Niemand sagt deinen Umzug ab" data-en="Nobody cancels on your move">Niemand sagt deinen Umzug ab</h3>
|
|
<p data-de="Weil dich sowieso niemand fragt. Problem gelöst. Du buchst einfach ein Umzugsunternehmen wie ein normaler Erwachsener." data-en="Because nobody asks you anyway. Problem solved. You just book a moving company like a normal adult.">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 data-de="Die Fernbedienung gehört dir" data-en="The remote control is yours">Die Fernbedienung gehört dir</h3>
|
|
<p data-de="Kein "Lass uns was zusammen schauen". Kein Kompromiss. Staffel 4 True Crime um 3 Uhr nachts? Dein gutes Recht." data-en="No "let's watch something together". No compromise. Season 4 true crime at 3am? Your absolute right.">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 data-de="Keine Gruppenrestaurant-Buchungen" data-en="No group restaurant bookings">Keine Gruppenrestaurant-Buchungen</h3>
|
|
<p data-de=""Wir sind 7. Nein, 6. Warte, Sandra kommt doch. Also 8." — Probleme, die du nie haben wirst." data-en=""There are 7 of us. No, 6. Wait, Sandra's coming after all. So 8." — Problems you'll never have.">„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 data-de="Spotify Wrapped ist ehrlich" data-en="Spotify Wrapped is honest">Spotify Wrapped ist ehrlich</h3>
|
|
<p data-de="Niemand urteilt über deine 847 Streams von demselben Song. Deine Daten, deine Scham, dein Geheimnis." data-en="Nobody judges your 847 streams of the same song. Your data, your shame, your secret.">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 data-de="Du sparst ein Vermögen" data-en="You save a fortune">Du sparst ein Vermögen</h3>
|
|
<p data-de="Keine Geburtstage, keine Hochzeiten, keine Geschenke. Das gesparte Geld investierst du in — naja, in dich. Wer sonst." data-en="No birthdays, no weddings, no gifts. You invest the saved money in — well, yourself. Who else.">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 data-de="Was unsere Nicht-Freunde sagen" data-en="What our non-friends say">Was unsere Nicht-Freunde sagen</h2>
|
|
<p class="testimonials-sub" data-de="Hinweis: Keine dieser Personen existiert." data-en="Note: None of these people exist.">Hinweis: Keine dieser Personen existiert.</p>
|
|
|
|
<div class="testimonial-grid">
|
|
<div class="testimonial">
|
|
<blockquote data-de="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." data-en="Since I've been on keinefreun.de, I've finally accepted that my houseplant is my closest confidant. It listens. It doesn't judge. It's slowly dying.">
|
|
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 data-de="Softwareentwickler & Ficus-Besitzer" data-en="Software developer & ficus owner">Softwareentwickler & Ficus-Besitzer</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="testimonial">
|
|
<blockquote data-de="Ich habe mir selbst eine Sprachnachricht geschickt, um zu testen, ob mein Handy noch funktioniert. Tut es. Schreibt nur niemand." data-en="I sent myself a voice message to test whether my phone still works. It does. Nobody's just writing.">
|
|
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 data-de="Senior Alleinsein-Consultant" data-en="Senior Being-Alone Consultant">Senior Alleinsein-Consultant</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="testimonial">
|
|
<blockquote data-de="Mein Therapeut hat mich gefragt, wie es meinem sozialen Umfeld geht. Ich habe gelacht. Er hat nicht gelacht. Der Termin wurde verlängert." data-en="My therapist asked how my social circle was doing. I laughed. He didn't laugh. The appointment was extended.">
|
|
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 data-de="Hobbyphilosoph & Tiefkühlpizza-Gourmet" data-en="Hobby philosopher & frozen pizza gourmet">Hobbyphilosoph & Tiefkühlpizza-Gourmet</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<!-- FAQ -->
|
|
<section class="faq">
|
|
<h2 data-de="Häufig gestellte Fragen" data-en="Frequently asked questions">Häufig gestellte Fragen</h2>
|
|
|
|
<div class="faq-item">
|
|
<div class="faq-q" data-de="Ist das hier ernst gemeint?" data-en="Is this meant seriously?">Ist das hier ernst gemeint?</div>
|
|
<div class="faq-a" data-de="Definiere "ernst". Definiere "gemeint". Definiere "hier". Siehst du, genau deshalb hat man keine Freunde." data-en="Define "seriously". Define "meant". Define "this". See, that's exactly why you have no friends.">Definiere „ernst“. Definiere „gemeint“. Definiere „hier“. Siehst du, genau deshalb hat man keine Freunde.</div>
|
|
</div>
|
|
|
|
<div class="faq-item">
|
|
<div class="faq-q" data-de="Kann ich hier Freunde finden?" data-en="Can I find friends here?">Kann ich hier Freunde finden?</div>
|
|
<div class="faq-a" data-de="Nein. Das ist explizit nicht der Zweck dieser Seite. Bitte lies den Domainnamen noch einmal langsam vor." data-en="No. That is explicitly not the purpose of this page. Please read the domain name aloud once more, slowly.">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" data-de="Ich habe aber Freunde?" data-en="But I do have friends?">Ich habe aber Freunde?</div>
|
|
<div class="faq-a" data-de="Das ist keine Frage. Und wir glauben dir nicht. Aber schön für dich." data-en="That's not a question. And we don't believe you. But good for you.">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" data-de="Gibt es einen Newsletter?" data-en="Is there a newsletter?">Gibt es einen Newsletter?</div>
|
|
<div class="faq-a" data-de="An wen sollten wir den schicken? Genau." data-en="Who would we send it to? Exactly.">An wen sollten wir den schicken? Genau.</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<!-- CTA -->
|
|
<section class="cta">
|
|
<h2 data-de="Bereit, niemanden kennenzulernen?" data-en="Ready to meet nobody?">Bereit, niemanden kennenzulernen?</h2>
|
|
<p data-de="Tritt unserer Community bei. Sie besteht aus dir. Das war's." data-en="Join our community. It consists of you. That's it.">Tritt unserer Community bei. Sie besteht aus dir. Das war's.</p>
|
|
<a class="btn" href="mailto:niemand@keinefreun.de" data-de="Kontakt (lol)" data-en="Contact (lol)">Kontakt (lol)</a>
|
|
</section>
|
|
|
|
<!-- FOOTER -->
|
|
<footer>
|
|
<div class="footer-domain">keinefreun.de</div>
|
|
<p data-de="Ein Projekt von jemandem ohne Freunde" data-en="A project by someone without friends">Ein Projekt von jemandem ohne Freunde</p>
|
|
<p style="margin-top: 0.5rem; opacity: 0.4;" data-de="© 2026 — Alle Rechte vorbehalten. Nicht dass es jemanden interessiert." data-en="© 2026 — All rights reserved. Not that anyone cares.">© 2026 — Alle Rechte vorbehalten. Nicht dass es jemanden interessiert.</p>
|
|
<button data-i18n-toggle style="margin-top:16px;background:none;border:1px solid var(--border);color:var(--text-dim);padding:6px 14px;border-radius:6px;font-size:0.75rem;cursor:pointer;font-family:inherit;letter-spacing:0.06em;">EN</button>
|
|
</footer>
|
|
|
|
<script src="/shared/ai-disclosure.js" data-tone="playful"></script>
|
|
<script src="/shared/i18n.js"></script>
|
|
</body>
|
|
</html>
|