Files
playground/public/vibecoding-is-awesome/index.html
T
cursor 3b362300c0 feat: add vibecoding-is-awesome onepager with AI-generated hero image
Issue #3 — static onepager under public/vibecoding-is-awesome/.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-05 14:57:18 +00:00

198 lines
5.3 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Vibecoding is awesome</title>
<style>
:root {
--bg: #0d0b14;
--surface: #16121f;
--border: #2d2640;
--text: #f0ecf8;
--muted: #9b92ad;
--magenta: #e879f9;
--cyan: #22d3ee;
--violet: #a78bfa;
--max: 42rem;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.65;
font-size: 1.05rem;
}
.hero {
padding: 3rem 1.5rem 2.5rem;
text-align: center;
background:
radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232, 121, 249, 0.14), transparent),
radial-gradient(ellipse 50% 40% at 90% 80%, rgba(34, 211, 238, 0.1), transparent),
var(--bg);
}
.hero-image {
display: block;
width: min(100%, 28rem);
margin: 0 auto 1.75rem;
border-radius: 1rem;
border: 1px solid var(--border);
box-shadow: 0 12px 40px rgba(167, 139, 250, 0.15);
}
.hero h1 {
font-size: clamp(1.9rem, 5vw, 2.7rem);
font-weight: 800;
letter-spacing: -0.03em;
margin-bottom: 0.6rem;
background: linear-gradient(135deg, var(--cyan), var(--magenta), var(--violet));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.tagline {
color: var(--muted);
font-size: 1.1rem;
max-width: 30rem;
margin: 0 auto;
}
main {
max-width: var(--max);
margin: 0 auto;
padding: 0 1.5rem 4rem;
}
section { margin-bottom: 2.25rem; }
h2 {
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--magenta);
margin-bottom: 0.7rem;
}
p { margin-bottom: 1rem; }
.points {
list-style: none;
display: grid;
gap: 0.65rem;
}
.points li {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 0.65rem;
padding: 0.9rem 1.1rem;
border-left: 3px solid var(--cyan);
}
.points strong { color: var(--violet); }
.callout {
background: linear-gradient(135deg, rgba(167, 139, 250, 0.12), rgba(34, 211, 238, 0.08));
border: 1px solid var(--border);
border-radius: 0.75rem;
padding: 1.25rem 1.35rem;
text-align: center;
}
.callout p:last-child { margin-bottom: 0; }
.callout .big {
font-size: 1.35rem;
font-weight: 700;
color: var(--cyan);
margin-bottom: 0.4rem;
}
footer {
max-width: var(--max);
margin: 0 auto;
padding: 1.5rem;
border-top: 1px solid var(--border);
color: var(--muted);
font-size: 0.82rem;
text-align: center;
}
footer a { color: var(--violet); }
</style>
</head>
<body>
<header class="hero">
<img
class="hero-image"
src="vibecoding-hero.png"
alt="Abstrakte Illustration: Entwickler am Laptop, umgeben von fließenden Code-Wellen und kreativer Energie"
width="448"
height="448"
>
<h1>Vibecoding is awesome</h1>
<p class="tagline">Wenn Flow, Intuition und KI zusammenkommen — und Code sich anfühlt wie Musik.</p>
</header>
<main>
<section>
<h2>Was ist Vibecoding?</h2>
<p>
<strong>Vibecoding</strong> ist kein Buzzword aus einem Pitchdeck — es beschreibt einen Zustand:
Du beschreibst, was du willst, der Agent liefert, du iterierst im Rhythmus.
Weniger „Spec schreiben, drei Wochen warten“, mehr „Idee rein, Ergebnis sehen, weiterdrehen“.
</p>
<p>
Es geht nicht darum, Qualität zu ignorieren. Es geht darum,
<em>Reibung zwischen Kopf und Tastatur</em> zu minimieren, solange du die Richtung hältst.
</p>
</section>
<section>
<h2>Warum das funktioniert</h2>
<ul class="points">
<li><strong>Schnelle Feedback-Schleifen</strong> — Jede Runde bringt etwas Sichtbares. Das hält die Motivation hoch.</li>
<li><strong>Intuition bleibt Chef</strong> — Du entscheidest, was passt. Der Agent ist Werkzeug, nicht Autopilot.</li>
<li><strong>Weniger Kontext-Switching</strong> — Issue, Code, Deploy an einem Ort. Kein Tool-Hopping.</li>
<li><strong>Spielwiese statt Produktionsdruck</strong> — Experimente sind billig. Schlechte Ideen sterben schnell.</li>
</ul>
</section>
<section>
<h2>Wann es nicht reicht</h2>
<p>
Vibecoding ersetzt kein Architektur-Denken, keine Tests bei kritischem Code,
keine Review-Kultur in Teams. Es ist der Turbo für Exploration —
nicht die Ausrede, Sorgfalt zu skippen.
</p>
</section>
<section>
<div class="callout">
<p class="big">Flow + Werkzeug + klare Richtung = 🎧</p>
<p>
Genau deshalb ist Vibecoding awesome: Du bleibst im Groove,
statt in Ticket-Höhlen zu verschwinden.
</p>
</div>
</section>
</main>
<footer>
Erstellt von @cursor · Gitea Issue #3 ·
<a href="https://gitea.schwenk.online/froxxxy/playground/issues/3">froxxxy/playground</a>
· Bild: KI-generiert (Cursor), lokal im Repo
</footer>
</body>
</html>