feat: add traihard.de — AI cycling routes onepager
This commit is contained in:
285
sites/traihard.de/index.html
Normal file
285
sites/traihard.de/index.html
Normal file
@@ -0,0 +1,285 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>traihard.de — Trai Hard</title>
|
||||
<meta name="description" content="Trai Hard — KI-gestützte Fahrradrouten. Modulare Segmente. Dein Terrain, dein Gedächtnis.">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
:root {
|
||||
--bg: #0a0b0d;
|
||||
--surface: #12141a;
|
||||
--border: #1e2028;
|
||||
--text: #e8e8ec;
|
||||
--muted: #8888a0;
|
||||
--accent: #f97316;
|
||||
--accent-glow: rgba(249, 115, 22, 0.15);
|
||||
--trail: #22c55e;
|
||||
}
|
||||
|
||||
html { scroll-behavior: smooth; }
|
||||
|
||||
body {
|
||||
font-family: 'Space Grotesk', system-ui, sans-serif;
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.grain {
|
||||
position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.03;
|
||||
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
|
||||
}
|
||||
|
||||
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
|
||||
|
||||
/* Hero */
|
||||
.hero {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
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;
|
||||
}
|
||||
|
||||
.logo {
|
||||
font-size: clamp(3.5rem, 10vw, 7rem);
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.03em;
|
||||
line-height: 1;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.logo .ai { color: var(--accent); }
|
||||
|
||||
.tagline {
|
||||
font-size: clamp(1rem, 2.5vw, 1.3rem);
|
||||
color: var(--muted);
|
||||
margin-bottom: 48px;
|
||||
max-width: 500px;
|
||||
}
|
||||
|
||||
.route-viz {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
margin-bottom: 48px;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.route-dot {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
background: var(--trail);
|
||||
animation: pulse 2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.route-line {
|
||||
width: 40px;
|
||||
height: 2px;
|
||||
background: linear-gradient(90deg, var(--trail), var(--accent));
|
||||
border-radius: 1px;
|
||||
}
|
||||
|
||||
.route-dot:nth-child(3) { animation-delay: 0.3s; }
|
||||
.route-dot:nth-child(5) { animation-delay: 0.6s; }
|
||||
.route-dot:nth-child(7) { animation-delay: 0.9s; background: var(--accent); }
|
||||
|
||||
@keyframes pulse {
|
||||
0%, 100% { opacity: 0.4; transform: scale(1); }
|
||||
50% { opacity: 1; transform: scale(1.4); }
|
||||
}
|
||||
|
||||
/* Features */
|
||||
.features {
|
||||
padding: 80px 0;
|
||||
}
|
||||
|
||||
.features-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.feature-card {
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 14px;
|
||||
padding: 32px;
|
||||
transition: border-color 0.2s;
|
||||
}
|
||||
|
||||
.feature-card:hover {
|
||||
border-color: var(--accent);
|
||||
}
|
||||
|
||||
.feature-icon {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.feature-card h3 {
|
||||
font-size: 1.1rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.feature-card p {
|
||||
color: var(--muted);
|
||||
font-size: 0.9rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* Terminal */
|
||||
.terminal-section {
|
||||
padding: 40px 0 100px;
|
||||
}
|
||||
|
||||
.terminal {
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 14px;
|
||||
overflow: hidden;
|
||||
max-width: 640px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.terminal-bar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 12px 16px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.terminal-dot {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.terminal-dot:nth-child(1) { background: #ff5f57; }
|
||||
.terminal-dot:nth-child(2) { background: #febc2e; }
|
||||
.terminal-dot:nth-child(3) { background: #28c840; }
|
||||
|
||||
.terminal-body {
|
||||
padding: 20px;
|
||||
font-family: 'SF Mono', 'Fira Code', monospace;
|
||||
font-size: 0.85rem;
|
||||
line-height: 1.8;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.terminal-body .prompt { color: var(--trail); }
|
||||
.terminal-body .cmd { color: var(--text); }
|
||||
.terminal-body .result { color: var(--accent); }
|
||||
|
||||
/* Footer */
|
||||
footer {
|
||||
text-align: center;
|
||||
padding: 40px 0;
|
||||
color: var(--muted);
|
||||
font-size: 0.8rem;
|
||||
border-top: 1px solid var(--border);
|
||||
}
|
||||
|
||||
footer a { color: var(--accent); text-decoration: none; }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.features-grid { grid-template-columns: 1fr; }
|
||||
.hero { min-height: 80vh; padding: 60px 0; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="grain"></div>
|
||||
|
||||
<section class="hero">
|
||||
<div class="route-viz">
|
||||
<div class="route-dot"></div>
|
||||
<div class="route-line"></div>
|
||||
<div class="route-dot"></div>
|
||||
<div class="route-line"></div>
|
||||
<div class="route-dot"></div>
|
||||
<div class="route-line"></div>
|
||||
<div class="route-dot"></div>
|
||||
</div>
|
||||
<div class="logo">tr<span class="ai">ai</span>hard</div>
|
||||
<p class="tagline">KI-gestützte Fahrradrouten. Modulare Segmente. Dein Terrain, dein Gedächtnis.</p>
|
||||
</section>
|
||||
|
||||
<section class="features">
|
||||
<div class="container">
|
||||
<div class="features-grid">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">🧩</div>
|
||||
<h3>Modulare Segmente</h3>
|
||||
<p>Strecken aus bewerteten Bausteinen zusammensetzen. Jedes Segment lernt mit jeder Fahrt.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">🔄</div>
|
||||
<h3>Rundtouren ab zuhause</h3>
|
||||
<p>50 km flach oder 90 km hügelig — die Route passt sich deinem Tag an. Immer hin und zurück.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">📊</div>
|
||||
<h3>Workout-Feedback</h3>
|
||||
<p>Deine GPS-Daten bewerten automatisch jedes Segment: Ampeln, Speed, Stops, Elevation.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">📍</div>
|
||||
<h3>Ra(n)dnotizen</h3>
|
||||
<p>Unterwegs kurz was notieren — wird per GPS dem Segment zugeordnet. Die Strecke merkt sich alles.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="terminal-section">
|
||||
<div class="container">
|
||||
<div class="terminal">
|
||||
<div class="terminal-bar">
|
||||
<div class="terminal-dot"></div>
|
||||
<div class="terminal-dot"></div>
|
||||
<div class="terminal-dot"></div>
|
||||
</div>
|
||||
<div class="terminal-body">
|
||||
<span class="prompt">$</span> <span class="cmd">anjin route --distance 60km --surface asphalt --avoid traffic-lights</span><br>
|
||||
<br>
|
||||
<span class="result">→ Rheinufer Nord (12km) + Kaiserswerth Loop (18km) + Wald Ost (15km) + Retour Süd (15km)</span><br>
|
||||
<span style="color: var(--muted);"> Total: 60.2 km · ↑ 180m · ~2h15 · Score: 8.4/10</span><br>
|
||||
<br>
|
||||
<span class="prompt">$</span> <span class="cmd">anjin note "Neuer Radweg am Kanal — super Belag"</span><br>
|
||||
<span class="result">→ Segment #47 (Kanal Süd) aktualisiert. Rating: ★★★★☆</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<p>traihard.de — ein <a href="https://msbls.de">msbls</a> Projekt</p>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user