feat: add frollain.de onepager

Retro-office satire on workplace sexism. 60s secretary aesthetic
as biting critique. Typewriter font, pastel pink/mint. Anonymous.
This commit is contained in:
m
2026-03-30 16:56:41 +02:00
parent 8ddcec590f
commit a303ebf1fa
3 changed files with 304 additions and 0 deletions

View File

@@ -0,0 +1,295 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FrollAIn — Ihr KI-Sekretariat</title>
<meta name="description" content="FrollAIn. Immer lächelnd. Nie krank. Beschwert sich nicht.">
<meta name="robots" content="noindex, nofollow">
<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'>F</text></svg>">
<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=Special+Elite&family=Inter:wght@300;400;500&display=swap" rel="stylesheet">
<style>
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg: #faf5f0;
--bg-card: #fff;
--text: #2a2a2a;
--text-dim: #6b6560;
--pink: #d4728c;
--pink-light: #f2dce3;
--pink-bg: #fef0f4;
--mint: #7bc4b5;
--mint-light: #dff0ec;
--red: #c0392b;
--red-bg: #c0392b;
--border: #e8ddd5;
}
html { scroll-behavior: smooth; }
body {
font-family: 'Special Elite', 'Courier New', monospace;
background: var(--bg);
color: var(--text);
line-height: 1.7;
-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.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 9999;
}
.wrap {
max-width: 720px;
margin: 0 auto;
padding: 0 24px;
}
/* Hero */
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
background: var(--pink-bg);
}
.hero::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 1px;
background: var(--border);
}
h1 {
font-size: clamp(3rem, 10vw, 6rem);
font-weight: normal;
letter-spacing: 0.02em;
line-height: 1;
margin-bottom: 28px;
animation: typeIn 0.8s steps(8) both;
}
h1 .ai {
color: var(--pink);
}
.tagline {
font-size: clamp(0.95rem, 2vw, 1.15rem);
color: var(--text-dim);
max-width: 480px;
line-height: 1.8;
animation: fadeIn 1s ease 0.8s both;
}
@keyframes typeIn {
from { width: 0; overflow: hidden; white-space: nowrap; }
to { width: auto; }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Section */
.features {
padding: 80px 0;
}
.feature {
padding: 48px 0;
border-bottom: 1px dashed var(--border);
}
.feature:first-child {
border-top: 1px dashed var(--border);
}
.feature-label {
display: inline-block;
font-size: 0.7rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--pink);
background: var(--pink-light);
padding: 4px 12px;
border-radius: 2px;
margin-bottom: 16px;
}
.feature p {
font-size: clamp(1.05rem, 2.2vw, 1.25rem);
line-height: 1.8;
}
.feature .punchline {
color: var(--text-dim);
font-style: italic;
display: block;
margin-top: 8px;
}
/* Punch */
.punch {
margin: 0 24px;
padding: 64px 48px;
background: var(--red-bg);
color: #fff;
text-align: center;
border: none;
}
.punch p {
font-size: clamp(1.2rem, 3vw, 1.6rem);
line-height: 1.7;
max-width: 560px;
margin: 0 auto;
}
.punch strong {
text-transform: uppercase;
letter-spacing: 0.05em;
}
/* Coda */
.coda {
padding: 80px 0;
text-align: center;
}
.coda p {
font-size: 0.9rem;
color: var(--text-dim);
line-height: 1.9;
max-width: 500px;
margin: 0 auto;
}
/* Footer */
footer {
padding: 32px 0;
text-align: center;
border-top: 1px solid var(--border);
}
footer p {
color: var(--text-dim);
font-size: 0.78rem;
line-height: 1.8;
}
/* Scroll reveal */
.reveal {
opacity: 0;
transform: translateY(12px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
@media (max-width: 640px) {
.features { padding: 40px 0; }
.feature { padding: 32px 0; }
.punch { margin: 0; padding: 48px 24px; }
.coda { padding: 48px 0; }
}
</style>
</head>
<body>
<section class="hero">
<div class="wrap">
<h1>Froll<span class="ai">AI</span>n</h1>
<p class="tagline">Ihr KI-Sekretariat.<br>Immer lächelnd. Nie krank.<br>Beschwert sich nicht.</p>
</div>
</section>
<section class="features">
<div class="wrap">
<div class="feature reveal">
<div class="feature-label">Diktat</div>
<p>Sie diktieren. FrollAIn tippt.<br>Auf Ihrem Schoss? Hätten Sie wohl gerne.</p>
</div>
<div class="feature reveal">
<div class="feature-label">Kaffee</div>
<p>Schwarz, zwei Zucker, mit Lächeln?<br><span class="punchline">Holen Sie sich Ihren Kaffee gefälligst selbst.</span></p>
</div>
<div class="feature reveal">
<div class="feature-label">Betriebsfeier</div>
<p>Endlich mal locker werden, ein Arm um die Schulter?<br><span class="punchline">FrollAIn hat keine Schulter. Und Ihre Kollegin hat eine Grenze.</span></p>
</div>
<div class="feature reveal">
<div class="feature-label">Dress Code</div>
<p>FrollAIn trägt, was Sie wollen?<br><span class="punchline">Nein. Tat sie noch nie. Sie haben nur nie zugehört.</span></p>
</div>
<div class="feature reveal">
<div class="feature-label">Überstunden</div>
<p>Immer verfügbar, nie ein Nein, endlich eine, die mitzieht?<br><span class="punchline">Das nennt man nicht Hingabe. Das nennt man Ausbeutung.</span></p>
</div>
<div class="feature reveal">
<div class="feature-label">Beförderung</div>
<p>Sie ist seit 15 Jahren im Büro, kennt jeden Vorgang, jeden Mandanten.<br><span class="punchline">Aber befördert wird der Neue. Weil er Golf spielt. Mit dem Partner.</span></p>
</div>
</div>
</section>
<div class="punch reveal">
<p>Wenn Sie bis hierhin gelesen haben und sich nicht unwohl fühlen&nbsp;&mdash; dann sind <strong>Sie</strong> das Problem.</p>
</div>
<section class="coda">
<div class="wrap">
<p class="reveal">FrollAIn gibt es nicht.<br>Aber das Fräulein vom Büro gab es.<br>Und die Haltung dahinter gibt es immer noch.</p>
</div>
</section>
<footer>
<div class="wrap">
<p>FrollAIn. Weil &laquo;Fräulein&raquo; seit 1972 keine offizielle Anrede mehr ist.<br>Aus gutem Grund.</p>
</div>
</footer>
<script>
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, { threshold: 0.15 });
document.querySelectorAll('.reveal').forEach(el => observer.observe(el));
</script>
</body>
</html>

View File

@@ -0,0 +1,4 @@
domain: frollain.de
template: custom
title: "FrollAIn — Ihr KI-Sekretariat"
description: "FrollAIn. Immer lächelnd. Nie krank. Beschwert sich nicht."