Phase 2 of i18n rollout: - All 54 static custom sites now have data-de/data-en attributes on visible text elements with English translations - i18n.js script tag injected into all sites - Language toggle button with machine-translation disclaimer added to every site's footer area - Brand names / domain wordplay preserved unchanged in both languages - 2 dynamic sites (dasbes.de, dumusst.com) skipped — no static HTML
587 lines
19 KiB
HTML
587 lines
19 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>kAInstress — KI, die Stress nimmt</title>
|
|
<meta name="description" content="kAInstress — Kuenstliche Intelligenz, die dir den Alltag abnimmt. Weniger Stress, mehr Fokus.">
|
|
<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'>K</text></svg>">
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
|
|
|
*, *::before, *::after {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
:root {
|
|
--bg: #0a0a0c;
|
|
--bg-elevated: #111115;
|
|
--bg-card: #16161b;
|
|
--border: #1e1e26;
|
|
--text: #e8e8ed;
|
|
--text-dim: #6e6e7a;
|
|
--text-muted: #44444f;
|
|
--accent: #10b981;
|
|
--accent-glow: rgba(16, 185, 129, 0.15);
|
|
--accent-subtle: rgba(16, 185, 129, 0.08);
|
|
--accent-bright: #34d399;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
line-height: 1.6;
|
|
-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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
|
|
pointer-events: none;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.container {
|
|
max-width: 860px;
|
|
margin: 0 auto;
|
|
padding: 0 24px;
|
|
}
|
|
|
|
nav {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 100;
|
|
padding: 20px 0;
|
|
background: rgba(10, 10, 12, 0.8);
|
|
backdrop-filter: blur(20px);
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
nav .container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
letter-spacing: -0.02em;
|
|
color: var(--text);
|
|
}
|
|
|
|
.logo .ai {
|
|
color: var(--accent);
|
|
font-weight: 700;
|
|
}
|
|
|
|
nav a {
|
|
color: var(--text-dim);
|
|
text-decoration: none;
|
|
font-size: 0.85rem;
|
|
font-weight: 400;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
nav a:hover { color: var(--text); }
|
|
|
|
/* Hero */
|
|
.hero {
|
|
padding: 180px 0 120px;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 60px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 700px;
|
|
height: 500px;
|
|
background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.hero-badge {
|
|
display: inline-block;
|
|
padding: 6px 16px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 100px;
|
|
font-size: 0.75rem;
|
|
font-weight: 500;
|
|
color: var(--text-dim);
|
|
letter-spacing: 0.06em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 32px;
|
|
background: var(--bg-elevated);
|
|
}
|
|
|
|
.hero-badge .dot {
|
|
display: inline-block;
|
|
width: 6px;
|
|
height: 6px;
|
|
background: var(--accent);
|
|
border-radius: 50%;
|
|
margin-right: 8px;
|
|
box-shadow: 0 0 8px var(--accent-glow);
|
|
position: relative;
|
|
top: -1px;
|
|
animation: pulse 2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.4; }
|
|
}
|
|
|
|
h1 {
|
|
font-size: clamp(2.8rem, 6vw, 4.5rem);
|
|
font-weight: 700;
|
|
letter-spacing: -0.04em;
|
|
line-height: 1.05;
|
|
margin-bottom: 24px;
|
|
position: relative;
|
|
}
|
|
|
|
h1 .ai { color: var(--accent); }
|
|
h1 .stress { color: var(--text-dim); font-weight: 300; }
|
|
|
|
.hero p {
|
|
font-size: 1.2rem;
|
|
color: var(--text-dim);
|
|
max-width: 540px;
|
|
margin: 0 auto 48px;
|
|
line-height: 1.7;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.hero p strong {
|
|
color: var(--text);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.cta-group {
|
|
display: flex;
|
|
gap: 16px;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 14px 28px;
|
|
border-radius: 10px;
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
transition: all 0.2s;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--accent);
|
|
color: #0a0a0c;
|
|
box-shadow: 0 0 30px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.15);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 0 50px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.15);
|
|
filter: brightness(1.1);
|
|
}
|
|
|
|
.btn-ghost {
|
|
background: transparent;
|
|
color: var(--text-dim);
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.btn-ghost:hover {
|
|
color: var(--text);
|
|
border-color: #2a2a35;
|
|
background: var(--bg-elevated);
|
|
}
|
|
|
|
/* Terminal */
|
|
.terminal {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
padding: 24px 28px;
|
|
margin-top: 56px;
|
|
max-width: 520px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
text-align: left;
|
|
font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
|
|
font-size: 0.82rem;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.terminal-dots {
|
|
display: flex;
|
|
gap: 6px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.terminal-dots span {
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 50%;
|
|
background: var(--border);
|
|
}
|
|
|
|
.terminal .prompt { color: var(--text-muted); }
|
|
.terminal .cmd { color: var(--text-dim); }
|
|
.terminal .out { color: var(--accent); }
|
|
.terminal .dim { color: var(--text-muted); }
|
|
|
|
/* Sections */
|
|
section { padding: 100px 0; }
|
|
|
|
.section-label {
|
|
font-size: 0.7rem;
|
|
font-weight: 600;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
color: var(--accent);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.8rem;
|
|
font-weight: 600;
|
|
letter-spacing: -0.03em;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.section-desc {
|
|
color: var(--text-dim);
|
|
font-size: 1rem;
|
|
max-width: 520px;
|
|
margin-bottom: 56px;
|
|
font-weight: 300;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.divider {
|
|
height: 1px;
|
|
background: var(--border);
|
|
max-width: 860px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Features */
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 16px;
|
|
}
|
|
|
|
.feature-card {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 14px;
|
|
padding: 32px;
|
|
transition: border-color 0.3s, box-shadow 0.3s;
|
|
}
|
|
|
|
.feature-card:hover {
|
|
border-color: #2a2a35;
|
|
box-shadow: 0 8px 40px rgba(0,0,0,0.3);
|
|
}
|
|
|
|
.feature-icon {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 10px;
|
|
background: var(--accent-subtle);
|
|
border: 1px solid rgba(16, 185, 129, 0.15);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 20px;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.feature-card h3 {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
.feature-card p {
|
|
color: var(--text-dim);
|
|
font-size: 0.86rem;
|
|
line-height: 1.6;
|
|
font-weight: 300;
|
|
}
|
|
|
|
/* Steps */
|
|
.steps {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0;
|
|
position: relative;
|
|
}
|
|
|
|
.steps::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 19px;
|
|
top: 40px;
|
|
bottom: 40px;
|
|
width: 1px;
|
|
background: linear-gradient(to bottom, var(--border), var(--accent), var(--border));
|
|
}
|
|
|
|
.step {
|
|
display: flex;
|
|
gap: 28px;
|
|
padding: 28px 0;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.step-num {
|
|
flex-shrink: 0;
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 50%;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
color: var(--accent);
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.step-content h3 {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.step-content p {
|
|
color: var(--text-dim);
|
|
font-size: 0.88rem;
|
|
font-weight: 300;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* CTA */
|
|
.cta-section {
|
|
text-align: center;
|
|
padding: 80px 0 120px;
|
|
}
|
|
|
|
.cta-section h2 { margin-bottom: 12px; }
|
|
|
|
.cta-section .section-desc {
|
|
margin: 0 auto 40px;
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
padding: 40px 0;
|
|
text-align: center;
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
|
|
footer p {
|
|
color: var(--text-muted);
|
|
font-size: 0.78rem;
|
|
font-weight: 400;
|
|
}
|
|
|
|
footer a {
|
|
color: var(--text-muted);
|
|
text-decoration: none;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
footer a:hover { color: var(--text-dim); }
|
|
|
|
@media (max-width: 640px) {
|
|
.features-grid { grid-template-columns: 1fr; }
|
|
.hero { padding: 140px 0 80px; }
|
|
section { padding: 64px 0; }
|
|
.feature-card { padding: 24px; }
|
|
.terminal { font-size: 0.75rem; padding: 18px 20px; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<nav>
|
|
<div class="container">
|
|
<div class="logo">k<span class="ai">AI</span>nstress</div>
|
|
<a href="#waitlist" data-de="Zugang anfragen" data-en="Request access">Zugang anfragen</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<section class="hero">
|
|
<div class="container">
|
|
<div class="hero-badge">
|
|
<span class="dot"></span><span data-de="Coming Soon" data-en="Coming Soon">Coming Soon</span>
|
|
</div>
|
|
<h1>k<span class="ai">AI</span>n<span class="stress">stress</span>.</h1>
|
|
<p data-de="Dein <strong>KI-Assistent</strong>, der Alltagschaos in Ruhe verwandelt. E-Mails, Termine, Aufgaben — automatisch sortiert, priorisiert, erledigt." data-en="Your <strong>AI assistant</strong> that transforms everyday chaos into calm. Emails, appointments, tasks — automatically sorted, prioritised, done.">
|
|
Dein <strong>KI-Assistent</strong>, der Alltagschaos in Ruhe verwandelt.
|
|
E-Mails, Termine, Aufgaben — automatisch sortiert, priorisiert, erledigt.
|
|
</p>
|
|
<div class="cta-group">
|
|
<a href="#waitlist" class="btn btn-primary" data-de="Zugang anfragen" data-en="Request access">Zugang anfragen</a>
|
|
<a href="#features" class="btn btn-ghost" data-de="Mehr erfahren" data-en="Learn more">Mehr erfahren</a>
|
|
</div>
|
|
|
|
<div class="terminal">
|
|
<div class="terminal-dots"><span></span><span></span><span></span></div>
|
|
<div><span class="prompt">$</span> <span class="cmd">kainstress status</span></div>
|
|
<div><span class="out" data-de="Inbox: 47 Mails verarbeitet, 3 brauchen dich" data-en="Inbox: 47 mails processed, 3 need you">Inbox: 47 Mails verarbeitet, 3 brauchen dich</span></div>
|
|
<div><span class="out" data-de="Kalender: Doppelbuchung um 14:00 geloest" data-en="Calendar: double booking at 14:00 resolved">Kalender: Doppelbuchung um 14:00 geloest</span></div>
|
|
<div><span class="out" data-de="Tasks: 2 erledigt, 1 Erinnerung um 17:00" data-en="Tasks: 2 done, 1 reminder at 17:00">Tasks: 2 erledigt, 1 Erinnerung um 17:00</span></div>
|
|
<div><span class="dim" data-de="Alles im Griff. Kein Stress." data-en="Everything under control. No stress.">Alles im Griff. Kein Stress.</span></div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<section id="features">
|
|
<div class="container">
|
|
<div class="section-label" data-de="Was kAInstress kann" data-en="What kAInstress can do">Was kAInstress kann</div>
|
|
<h2 data-de="Dein unsichtbarer Assistent." data-en="Your invisible assistant.">Dein unsichtbarer Assistent.</h2>
|
|
<div class="section-desc" data-de="Kein neues Tool lernen. Kein Dashboard checken. kAInstress arbeitet im Hintergrund — du merkst nur, dass alles laeuft." data-en="No new tool to learn. No dashboard to check. kAInstress works in the background — you just notice that everything runs.">
|
|
Kein neues Tool lernen. Kein Dashboard checken.
|
|
kAInstress arbeitet im Hintergrund — du merkst nur, dass alles laeuft.
|
|
</div>
|
|
|
|
<div class="features-grid">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">M</div>
|
|
<h3 data-de="E-Mail auf Autopilot" data-en="Email on autopilot">E-Mail auf Autopilot</h3>
|
|
<p data-de="Liest, sortiert, priorisiert. Entwirft Antworten in deinem Stil. Du sagst nur noch Ja oder Nein." data-en="Reads, sorts, prioritises. Drafts replies in your style. You just say yes or no.">
|
|
Liest, sortiert, priorisiert. Entwirft Antworten in deinem Stil.
|
|
Du sagst nur noch Ja oder Nein.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<div class="feature-icon">K</div>
|
|
<h3 data-de="Kalender-Tetris" data-en="Calendar Tetris">Kalender-Tetris</h3>
|
|
<p data-de="Erkennt Konflikte, schlaegt Alternativen vor, koordiniert mit anderen. Schluss mit Terminchaos." data-en="Detects conflicts, suggests alternatives, coordinates with others. No more scheduling chaos.">
|
|
Erkennt Konflikte, schlaegt Alternativen vor, koordiniert mit anderen.
|
|
Schluss mit Terminchaos.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<div class="feature-icon">V</div>
|
|
<h3 data-de="Sprachnachrichten? Erledigt." data-en="Voice messages? Done.">Sprachnachrichten? Erledigt.</h3>
|
|
<p data-de="Transkribiert, fasst zusammen, extrahiert To-Dos. Die 5-Minuten-Audio wird zum Dreizeiler." data-en="Transcribes, summarises, extracts to-dos. The 5-minute audio becomes three lines.">
|
|
Transkribiert, fasst zusammen, extrahiert To-Dos.
|
|
Die 5-Minuten-Audio wird zum Dreizeiler.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<div class="feature-icon">A</div>
|
|
<h3 data-de="Aufgaben im Griff" data-en="Tasks under control">Aufgaben im Griff</h3>
|
|
<p data-de="Sammelt To-Dos aus allen Kanaelen. Priorisiert nach Kontext. Erinnert zum richtigen Zeitpunkt." data-en="Collects to-dos from all channels. Prioritises by context. Reminds at the right moment.">
|
|
Sammelt To-Dos aus allen Kanaelen. Priorisiert nach Kontext.
|
|
Erinnert zum richtigen Zeitpunkt.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<section id="how">
|
|
<div class="container">
|
|
<div class="section-label" data-de="So funktioniert es" data-en="How it works">So funktioniert es</div>
|
|
<h2 data-de="Einrichten. Zuruecklehnen." data-en="Set up. Lean back.">Einrichten. Zuruecklehnen.</h2>
|
|
<div class="section-desc" data-de="kAInstress laeuft auf deiner eigenen Infrastruktur. Deine Daten bleiben bei dir — keine Cloud, kein Mithoeren." data-en="kAInstress runs on your own infrastructure. Your data stays with you — no cloud, no eavesdropping.">
|
|
kAInstress laeuft auf deiner eigenen Infrastruktur.
|
|
Deine Daten bleiben bei dir — keine Cloud, kein Mithoeren.
|
|
</div>
|
|
|
|
<div class="steps">
|
|
<div class="step">
|
|
<div class="step-num">1</div>
|
|
<div class="step-content">
|
|
<h3 data-de="Accounts verbinden" data-en="Connect accounts">Accounts verbinden</h3>
|
|
<p data-de="E-Mail, Kalender, Messenger — kAInstress dockt an deine bestehenden Systeme an. Standard-Protokolle, keine Vendor-Lock-ins." data-en="Email, calendar, messenger — kAInstress connects to your existing systems. Standard protocols, no vendor lock-ins.">E-Mail, Kalender, Messenger — kAInstress dockt an deine bestehenden Systeme an. Standard-Protokolle, keine Vendor-Lock-ins.</p>
|
|
</div>
|
|
</div>
|
|
<div class="step">
|
|
<div class="step-num">2</div>
|
|
<div class="step-content">
|
|
<h3 data-de="Stil lernen" data-en="Learn your style">Stil lernen</h3>
|
|
<p data-de="Die KI lernt wie du schreibst, was dir wichtig ist, wer Prioritaet hat. Kein generisches Modell — dein persoenlicher Assistent." data-en="The AI learns how you write, what matters to you, who has priority. No generic model — your personal assistant.">Die KI lernt wie du schreibst, was dir wichtig ist, wer Prioritaet hat. Kein generisches Modell — dein persoenlicher Assistent.</p>
|
|
</div>
|
|
</div>
|
|
<div class="step">
|
|
<div class="step-num">3</div>
|
|
<div class="step-content">
|
|
<h3 data-de="Stress weg" data-en="Stress gone">Stress weg</h3>
|
|
<p data-de="Mails beantworten, Termine jonglieren, Aufgaben abarbeiten. Im Hintergrund, in deinem Namen, unter deiner Kontrolle." data-en="Answering emails, juggling appointments, working through tasks. In the background, in your name, under your control.">Mails beantworten, Termine jonglieren, Aufgaben abarbeiten. Im Hintergrund, in deinem Namen, unter deiner Kontrolle.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<section id="waitlist" class="cta-section">
|
|
<div class="container">
|
|
<div class="section-label" data-de="Early Access" data-en="Early Access">Early Access</div>
|
|
<h2 data-de="Stress war gestern." data-en="Stress is so yesterday.">Stress war gestern.</h2>
|
|
<div class="section-desc" data-de="kAInstress ist in der Entwicklung. Meld dich an und gehoer zu den Ersten, die ihren Alltag auf Autopilot setzen." data-en="kAInstress is in development. Sign up and be among the first to put your daily life on autopilot.">
|
|
kAInstress ist in der Entwicklung. Meld dich an und gehoer zu den Ersten,
|
|
die ihren Alltag auf Autopilot setzen.
|
|
</div>
|
|
<a href="mailto:mail@msbls.de?subject=kAInstress%20—%20Interesse" class="btn btn-primary" data-de="Zugang anfragen" data-en="Request access">
|
|
Zugang anfragen
|
|
</a>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<p>k<span style="color: var(--accent);">AI</span>nstress.de — <span data-de="ein Projekt von" data-en="a project by">ein Projekt von</span> <a href="https://msbls.de" target="_blank" rel="noopener">msbls.de</a></p>
|
|
<div style="text-align:center;margin-top:16px;">
|
|
<button data-i18n-toggle title="Maschinell übersetzt / Machine-translated — German is the original." style="background:none;border:1px solid var(--text-muted,#444);color:var(--text-muted,#444);font-size:0.65rem;letter-spacing:0.1em;padding:4px 12px;border-radius:4px;cursor:pointer;">EN</button>
|
|
<br><small data-de="Maschinell übersetzt" data-en="Machine-translated" style="color:var(--text-muted,#444);font-size:0.6rem;opacity:0.5;">Maschinell übersetzt</small>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="/shared/i18n.js"></script>
|
|
</body>
|
|
</html>
|