feat: add kitox.de — KI-Detox onepager
This commit is contained in:
425
sites/kitox.de/index.html
Normal file
425
sites/kitox.de/index.html
Normal file
@@ -0,0 +1,425 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>KItox — Dein KI-Detox</title>
|
||||||
|
<meta name="description" content="KItox ist die 7-Tage KI-Detox Challenge. Bewusster Entzug von künstlicher Intelligenz.">
|
||||||
|
<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=Nunito:wght@400;600;700;800&display=swap" rel="stylesheet">
|
||||||
|
<style>
|
||||||
|
*, *::before, *::after {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--bg: #f7f4ee;
|
||||||
|
--bg-warm: #f0ebe1;
|
||||||
|
--text: #3b3f2e;
|
||||||
|
--text-light: #6b705c;
|
||||||
|
--green: #7c956b;
|
||||||
|
--green-light: #a3b899;
|
||||||
|
--green-pale: #dde6d5;
|
||||||
|
--earth: #c4ac82;
|
||||||
|
--earth-light: #e8dcc8;
|
||||||
|
--white: #fffdf8;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
scroll-behavior: smooth;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: 'Nunito', -apple-system, sans-serif;
|
||||||
|
background: var(--bg);
|
||||||
|
color: var(--text);
|
||||||
|
line-height: 1.7;
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Hero */
|
||||||
|
.hero {
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
text-align: center;
|
||||||
|
padding: 2rem;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
background: radial-gradient(ellipse at 50% 30%, var(--green-pale) 0%, transparent 70%);
|
||||||
|
opacity: 0.5;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.breath-circle {
|
||||||
|
width: 160px;
|
||||||
|
height: 160px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background: radial-gradient(circle, var(--green-light) 0%, var(--green-pale) 60%, transparent 100%);
|
||||||
|
opacity: 0.6;
|
||||||
|
animation: breathe 6s ease-in-out infinite;
|
||||||
|
margin-bottom: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes breathe {
|
||||||
|
0%, 100% { transform: scale(0.85); opacity: 0.4; }
|
||||||
|
50% { transform: scale(1.15); opacity: 0.7; }
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
font-size: clamp(4rem, 12vw, 8rem);
|
||||||
|
font-weight: 800;
|
||||||
|
letter-spacing: -0.02em;
|
||||||
|
color: var(--text);
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo .ki {
|
||||||
|
color: var(--green);
|
||||||
|
}
|
||||||
|
|
||||||
|
.subline {
|
||||||
|
font-size: clamp(1.1rem, 2.5vw, 1.4rem);
|
||||||
|
color: var(--text-light);
|
||||||
|
margin-top: 1rem;
|
||||||
|
font-weight: 400;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scroll-hint {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 2.5rem;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
width: 24px;
|
||||||
|
height: 40px;
|
||||||
|
border: 2px solid var(--green-light);
|
||||||
|
border-radius: 12px;
|
||||||
|
opacity: 0.4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scroll-hint::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 6px;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
width: 4px;
|
||||||
|
height: 8px;
|
||||||
|
background: var(--green-light);
|
||||||
|
border-radius: 2px;
|
||||||
|
animation: scroll-dot 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes scroll-dot {
|
||||||
|
0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
|
||||||
|
50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Sections */
|
||||||
|
section {
|
||||||
|
max-width: 680px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 5rem 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-label {
|
||||||
|
font-size: 0.75rem;
|
||||||
|
font-weight: 700;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.15em;
|
||||||
|
color: var(--green);
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Problem */
|
||||||
|
.problem {
|
||||||
|
padding: 6rem 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.problem-text {
|
||||||
|
font-size: clamp(1.3rem, 3vw, 1.7rem);
|
||||||
|
line-height: 1.8;
|
||||||
|
color: var(--text);
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
.problem-text strong {
|
||||||
|
color: var(--green);
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Divider */
|
||||||
|
.divider {
|
||||||
|
width: 48px;
|
||||||
|
height: 3px;
|
||||||
|
background: var(--green-light);
|
||||||
|
border-radius: 2px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Challenge */
|
||||||
|
.challenge {
|
||||||
|
padding: 5rem 2rem 6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.challenge h2 {
|
||||||
|
font-size: clamp(1.8rem, 4vw, 2.4rem);
|
||||||
|
font-weight: 800;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
color: var(--text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.challenge .intro {
|
||||||
|
color: var(--text-light);
|
||||||
|
font-size: 1.05rem;
|
||||||
|
margin-bottom: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.days {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.day {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
gap: 1.25rem;
|
||||||
|
padding: 1.5rem;
|
||||||
|
background: var(--white);
|
||||||
|
border-radius: 16px;
|
||||||
|
border: 1px solid var(--earth-light);
|
||||||
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.day:hover {
|
||||||
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 8px 24px rgba(107, 112, 92, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
.day-num {
|
||||||
|
flex-shrink: 0;
|
||||||
|
width: 44px;
|
||||||
|
height: 44px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background: var(--green-pale);
|
||||||
|
color: var(--green);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-weight: 800;
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.day-content h3 {
|
||||||
|
font-size: 1.05rem;
|
||||||
|
font-weight: 700;
|
||||||
|
margin-bottom: 0.25rem;
|
||||||
|
color: var(--text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.day-content p {
|
||||||
|
font-size: 0.92rem;
|
||||||
|
color: var(--text-light);
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provocation */
|
||||||
|
.provocation {
|
||||||
|
text-align: center;
|
||||||
|
padding: 6rem 2rem 8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.provocation p {
|
||||||
|
font-size: clamp(1rem, 2vw, 1.15rem);
|
||||||
|
color: var(--text-light);
|
||||||
|
max-width: 480px;
|
||||||
|
margin: 0 auto;
|
||||||
|
line-height: 1.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
.provocation .highlight {
|
||||||
|
display: block;
|
||||||
|
margin-top: 0.75rem;
|
||||||
|
font-weight: 700;
|
||||||
|
color: var(--green);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Footer */
|
||||||
|
footer {
|
||||||
|
text-align: center;
|
||||||
|
padding: 2rem;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
color: var(--text-light);
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Animations */
|
||||||
|
.fade-in {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(20px);
|
||||||
|
transition: opacity 0.8s ease, transform 0.8s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fade-in.visible {
|
||||||
|
opacity: 1;
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Mobile */
|
||||||
|
@media (max-width: 640px) {
|
||||||
|
section {
|
||||||
|
padding: 3.5rem 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.problem {
|
||||||
|
padding: 4rem 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.challenge {
|
||||||
|
padding: 3.5rem 1.5rem 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.day {
|
||||||
|
padding: 1.25rem;
|
||||||
|
gap: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.provocation {
|
||||||
|
padding: 4rem 1.5rem 5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.breath-circle {
|
||||||
|
width: 120px;
|
||||||
|
height: 120px;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<!-- Hero -->
|
||||||
|
<section class="hero">
|
||||||
|
<div class="breath-circle"></div>
|
||||||
|
<h1 class="logo"><span class="ki">KI</span>tox</h1>
|
||||||
|
<p class="subline">Dein KI-Detox beginnt hier.</p>
|
||||||
|
<div class="scroll-hint"></div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Problem -->
|
||||||
|
<section class="problem fade-in">
|
||||||
|
<div class="section-label">Das Problem</div>
|
||||||
|
<p class="problem-text">
|
||||||
|
Du merkst es nicht sofort. Aber dein Denken hat sich verändert.<br><br>
|
||||||
|
Jede Frage geht zuerst an die <strong>KI</strong>.<br>
|
||||||
|
Jeder Text wird zuerst <strong>generiert</strong>.<br>
|
||||||
|
Jede Entscheidung zuerst <strong>delegiert</strong>.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<div class="divider"></div>
|
||||||
|
|
||||||
|
<!-- Challenge -->
|
||||||
|
<section class="challenge fade-in">
|
||||||
|
<div class="section-label">Das Programm</div>
|
||||||
|
<h2>7 Tage KI-Detox</h2>
|
||||||
|
<p class="intro">Sieben Tage. Sieben Übungen. Kein Trick — nur du.</p>
|
||||||
|
|
||||||
|
<div class="days">
|
||||||
|
<div class="day fade-in">
|
||||||
|
<div class="day-num">1</div>
|
||||||
|
<div class="day-content">
|
||||||
|
<h3>Keine KI-Suche</h3>
|
||||||
|
<p>Tippe deine Frage nicht in ChatGPT. Denk selbst nach. Oder frag einen Menschen.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="day fade-in">
|
||||||
|
<div class="day-num">2</div>
|
||||||
|
<div class="day-content">
|
||||||
|
<h3>Eigene Mails schreiben</h3>
|
||||||
|
<p>Jedes Wort von dir. Kein „Formuliere mir eine höfliche Absage". Deine Stimme.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="day fade-in">
|
||||||
|
<div class="day-num">3</div>
|
||||||
|
<div class="day-content">
|
||||||
|
<h3>Eigene Texte formulieren</h3>
|
||||||
|
<p>Blog, Bericht, Nachricht — alles handgeschrieben. Darf unperfekt sein.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="day fade-in">
|
||||||
|
<div class="day-num">4</div>
|
||||||
|
<div class="day-content">
|
||||||
|
<h3>Ohne Navigation fahren</h3>
|
||||||
|
<p>Karte anschauen, Route merken, losfahren. Dein Orientierungssinn lebt noch.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="day fade-in">
|
||||||
|
<div class="day-num">5</div>
|
||||||
|
<div class="day-content">
|
||||||
|
<h3>Analog planen</h3>
|
||||||
|
<p>Papier und Stift. Keine App, kein Assistent. Dein Tag, dein Plan.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="day fade-in">
|
||||||
|
<div class="day-num">6</div>
|
||||||
|
<div class="day-content">
|
||||||
|
<h3>Langeweile aushalten</h3>
|
||||||
|
<p>Kein Prompt. Kein „Erzähl mir was". Sitz da und lass deinen Kopf machen.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="day fade-in">
|
||||||
|
<div class="day-num">7</div>
|
||||||
|
<div class="day-content">
|
||||||
|
<h3>Reflektieren</h3>
|
||||||
|
<p>Was war schwer? Was war überraschend leicht? Was hat sich verändert?</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<div class="divider"></div>
|
||||||
|
|
||||||
|
<!-- Provocation -->
|
||||||
|
<section class="provocation fade-in">
|
||||||
|
<p>
|
||||||
|
Diese Seite wurde von einer KI gebaut.
|
||||||
|
<span class="highlight">Du siehst das Problem.</span>
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<footer>KItox — 2026</footer>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const observer = new IntersectionObserver((entries) => {
|
||||||
|
entries.forEach(entry => {
|
||||||
|
if (entry.isIntersecting) {
|
||||||
|
entry.target.classList.add('visible');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}, { threshold: 0.15, rootMargin: '0px 0px -40px 0px' });
|
||||||
|
|
||||||
|
document.querySelectorAll('.fade-in').forEach(el => observer.observe(el));
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
4
sites/kitox.de/site.yaml
Normal file
4
sites/kitox.de/site.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
domain: kitox.de
|
||||||
|
template: custom
|
||||||
|
title: "KItox — Dein KI-Detox"
|
||||||
|
description: "KItox ist die 7-Tage KI-Detox Challenge. Bewusster Entzug von künstlicher Intelligenz."
|
||||||
Reference in New Issue
Block a user