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
234 lines
8.0 KiB
HTML
234 lines
8.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Mach es doch einfach.</title>
|
|
<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'>🚀</text></svg>">
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');
|
|
|
|
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
:root {
|
|
--bg: #faf8f5;
|
|
--text: #2a2520;
|
|
--text-soft: #6b6259;
|
|
--text-faint: #a89878;
|
|
--accent: #e8783a;
|
|
--accent-soft: rgba(232, 120, 58, 0.12);
|
|
--line: rgba(232, 120, 58, 0.15);
|
|
}
|
|
|
|
html { scroll-behavior: smooth; }
|
|
|
|
body {
|
|
font-family: 'Newsreader', Georgia, serif;
|
|
background: var(--bg); color: var(--text);
|
|
line-height: 1.8; -webkit-font-smoothing: antialiased;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.page {
|
|
max-width: 540px;
|
|
margin: 0 auto;
|
|
padding: 120px 24px 80px;
|
|
}
|
|
|
|
.icon {
|
|
font-size: 3rem;
|
|
margin-bottom: 48px;
|
|
animation: launch 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes launch {
|
|
0%, 100% { transform: translateY(0) rotate(0deg); }
|
|
50% { transform: translateY(-6px) rotate(3deg); }
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'Newsreader', Georgia, serif;
|
|
font-size: clamp(2.2rem, 5vw, 3rem);
|
|
font-weight: 500;
|
|
letter-spacing: -0.02em;
|
|
line-height: 1.2;
|
|
margin-bottom: 40px;
|
|
color: var(--text);
|
|
}
|
|
|
|
h1 em {
|
|
font-style: italic;
|
|
color: var(--accent);
|
|
}
|
|
|
|
.rule {
|
|
width: 40px; height: 2px;
|
|
background: var(--accent); margin: 0 auto 40px 0;
|
|
opacity: 0.4; border-radius: 1px;
|
|
}
|
|
|
|
.prose { margin-bottom: 48px; }
|
|
|
|
.prose p {
|
|
font-size: 1.08rem; color: var(--text-soft);
|
|
font-weight: 300; line-height: 1.9; margin-bottom: 24px;
|
|
}
|
|
|
|
.prose p:last-child { margin-bottom: 0; }
|
|
.prose em { color: var(--text); font-style: italic; }
|
|
.prose strong { color: var(--accent); font-weight: 500; }
|
|
|
|
.highlight {
|
|
background: var(--accent-soft);
|
|
padding: 28px 32px; border-radius: 14px;
|
|
border-left: 3px solid var(--accent);
|
|
margin: 48px 0;
|
|
}
|
|
|
|
.highlight p {
|
|
font-size: 1.05rem; color: var(--text-soft);
|
|
font-weight: 300; font-style: italic; line-height: 1.8;
|
|
}
|
|
|
|
.steps {
|
|
margin: 48px 0;
|
|
counter-reset: step;
|
|
}
|
|
|
|
.step {
|
|
counter-increment: step;
|
|
padding: 16px 0;
|
|
border-bottom: 1px solid var(--line);
|
|
display: flex;
|
|
gap: 16px;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.step:last-child { border-bottom: none; }
|
|
|
|
.step::before {
|
|
content: counter(step) ".";
|
|
font-family: 'Inter', sans-serif;
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
color: var(--accent);
|
|
min-width: 24px;
|
|
}
|
|
|
|
.step p {
|
|
font-size: 1rem; color: var(--text-soft);
|
|
font-weight: 300; line-height: 1.7;
|
|
}
|
|
|
|
.closing {
|
|
margin-top: 56px;
|
|
padding-top: 40px;
|
|
border-top: 1px solid var(--line);
|
|
}
|
|
|
|
.closing p {
|
|
font-size: 1.15rem;
|
|
color: var(--text);
|
|
font-weight: 400;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
footer {
|
|
margin-top: 64px;
|
|
padding-top: 24px;
|
|
border-top: 1px solid var(--line);
|
|
text-align: center;
|
|
}
|
|
|
|
footer p {
|
|
font-family: 'Inter', sans-serif;
|
|
font-size: 0.72rem;
|
|
color: var(--text-faint);
|
|
}
|
|
|
|
@keyframes fadeUp {
|
|
from { opacity: 0; transform: translateY(16px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
.page > * { animation: fadeUp 0.8s ease forwards; opacity: 0; }
|
|
.page > *:nth-child(1) { animation-delay: 0.1s; }
|
|
.page > *:nth-child(2) { animation-delay: 0.4s; }
|
|
.page > *:nth-child(3) { animation-delay: 0.7s; }
|
|
.page > *:nth-child(4) { animation-delay: 1.0s; }
|
|
.page > *:nth-child(5) { animation-delay: 1.3s; }
|
|
.page > *:nth-child(6) { animation-delay: 1.6s; }
|
|
.page > *:nth-child(7) { animation-delay: 1.9s; }
|
|
.page > *:nth-child(8) { animation-delay: 2.2s; }
|
|
|
|
@media (max-width: 540px) { .page { padding: 80px 20px 60px; } .highlight { padding: 20px 24px; } }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="page">
|
|
|
|
<div class="icon">🚀</div>
|
|
|
|
<h1 data-de="Mach es doch <em>einfach</em>." data-en="Just <em>do</em> it.">Mach es doch <em>einfach</em>.</h1>
|
|
|
|
<div class="rule"></div>
|
|
|
|
<div class="prose">
|
|
<p data-de="Du denkst schon zu lange darüber nach. Du planst, du wägst ab, du wartest auf den richtigen Moment. Aber der richtige Moment ist <em>jetzt</em>." data-en="You've been thinking about it for too long. You plan, you weigh things up, you wait for the right moment. But the right moment is <em>now</em>.">
|
|
Du denkst schon zu lange darüber nach. Du planst, du wägst ab,
|
|
du wartest auf den richtigen Moment. Aber der richtige Moment
|
|
ist <em>jetzt</em>.
|
|
</p>
|
|
<p data-de="Nicht morgen. Nicht wenn du bereit bist. Nicht wenn alles perfekt ist. Denn perfekt wird es nie sein — und das ist der Punkt. <strong>Es muss nicht perfekt sein. Es muss nur anfangen.</strong>" data-en="Not tomorrow. Not when you're ready. Not when everything is perfect. Because it will never be perfect — and that's the point. <strong>It doesn't need to be perfect. It just needs to start.</strong>">
|
|
Nicht morgen. Nicht wenn du bereit bist. Nicht wenn alles
|
|
perfekt ist. Denn perfekt wird es nie sein — und das ist
|
|
der Punkt. <strong>Es muss nicht perfekt sein. Es muss nur anfangen.</strong>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="highlight">
|
|
<p data-de="„Die meisten Menschen scheitern nicht am Können. Sie scheitern am Anfangen."" data-en=""Most people don't fail at ability. They fail at starting."">
|
|
„Die meisten Menschen scheitern nicht am Können.
|
|
Sie scheitern am Anfangen."
|
|
</p>
|
|
</div>
|
|
|
|
<div class="steps">
|
|
<div class="step">
|
|
<p data-de="Hör auf zu googeln, ob es eine gute Idee ist." data-en="Stop googling whether it's a good idea.">Hör auf zu googeln, ob es eine gute Idee ist.</p>
|
|
</div>
|
|
<div class="step">
|
|
<p data-de="Mach den ersten Schritt. Egal wie klein." data-en="Take the first step. No matter how small.">Mach den ersten Schritt. Egal wie klein.</p>
|
|
</div>
|
|
<div class="step">
|
|
<p data-de="Erzähl jemandem davon. Dann gibt es kein Zurück." data-en="Tell someone about it. Then there's no turning back.">Erzähl jemandem davon. Dann gibt es kein Zurück.</p>
|
|
</div>
|
|
<div class="step">
|
|
<p data-de="Akzeptiere, dass es am Anfang schlecht sein wird." data-en="Accept that it will be bad at first.">Akzeptiere, dass es am Anfang schlecht sein wird.</p>
|
|
</div>
|
|
<div class="step">
|
|
<p data-de="Mach weiter. Jeden Tag ein bisschen besser." data-en="Keep going. A little better every day.">Mach weiter. Jeden Tag ein bisschen besser.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="closing">
|
|
<p data-de="Du kannst das. Und du weißt es." data-en="You can do this. And you know it.">
|
|
Du kannst das. Und du weißt es.
|
|
</p>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>machesdocheinfach.de</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>
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
<script src="/shared/i18n.js"></script>
|
|
</body>
|
|
</html>
|