PlexAI's picture
Initial DeepSite commit
b1cd22f verified
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oelchen Support - KI-basierter Hilfebereich</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/lucide@latest"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
body { font-family: 'Inter', sans-serif; }
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.glass-effect {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
}
.chat-message {
animation: slideIn 0.3s ease-out;
}
@keyframes slideIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.typing-dot {
animation: typing 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes typing {
0%, 80%, 100% { transform: scale(0); }
40% { transform: scale(1); }
}
.hover-lift {
transition: transform 0.2s, box-shadow 0.2s;
}
.hover-lift:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Navigation -->
<nav class="sticky top-0 z-50 glass-effect border-b border-gray-200">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16 items-center">
<div class="flex items-center space-x-3">
<div class="w-10 h-10 gradient-bg rounded-xl flex items-center justify-center text-white font-bold text-xl">
O
</div>
<span class="font-bold text-xl text-gray-900">Oelchen Support</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#ki-assistent" class="text-gray-600 hover:text-purple-600 font-medium transition">KI-Assistent</a>
<a href="#faq" class="text-gray-600 hover:text-purple-600 font-medium transition">FAQ</a>
<a href="#kontakt" class="text-gray-600 hover:text-purple-600 font-medium transition">Kontakt</a>
<button onclick="toggleChat()" class="gradient-bg text-white px-6 py-2 rounded-full font-medium hover:opacity-90 transition flex items-center gap-2">
<i data-lucide="message-circle" class="w-4 h-4"></i>
Live Chat
</button>
</div>
<button class="md:hidden" onclick="toggleMobileMenu()">
<i data-lucide="menu" class="w-6 h-6 text-gray-600"></i>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white border-t border-gray-200">
<div class="px-4 pt-2 pb-4 space-y-2">
<a href="#ki-assistent" class="block px-3 py-2 text-gray-600 hover:bg-purple-50 rounded-lg">KI-Assistent</a>
<a href="#faq" class="block px-3 py-2 text-gray-600 hover:bg-purple-50 rounded-lg">FAQ</a>
<a href="#kontakt" class="block px-3 py-2 text-gray-600 hover:bg-purple-50 rounded-lg">Kontakt</a>
</div>
</div>
</nav>
<!-- Hero Section mit Suche -->
<section class="gradient-bg text-white py-20 px-4">
<div class="max-w-4xl mx-auto text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Wie können wir dir helfen?</h1>
<p class="text-xl text-purple-100 mb-8">Finde sofortige Antworten mit unserer KI oder durchsuche unsere Wissensdatenbank</p>
<div class="relative max-w-2xl mx-auto">
<input type="text"
id="searchInput"
placeholder="Stelle eine Frage oder suche nach Stichworten..."
class="w-full px-6 py-4 rounded-2xl text-gray-800 text-lg shadow-2xl focus:outline-none focus:ring-4 focus:ring-purple-300 transition"
onkeyup="handleSearch(event)">
<button class="absolute right-3 top-3 bg-purple-600 text-white p-2 rounded-xl hover:bg-purple-700 transition">
<i data-lucide="search" class="w-6 h-6"></i>
</button>
</div>
<div class="mt-6 flex flex-wrap justify-center gap-3 text-sm">
<span class="text-purple-200">Beliebt:</span>
<button onclick="quickSearch('Passwort zurücksetzen')" class="bg-white/20 hover:bg-white/30 px-4 py-1 rounded-full transition">Passwort zurücksetzen</button>
<button onclick="quickSearch('Rechnung')" class="bg-white/20 hover:bg-white/30 px-4 py-1 rounded-full transition">Rechnung</button>
<button onclick="quickSearch('Konto löschen')" class="bg-white/20 hover:bg-white/30 px-4 py-1 rounded-full transition">Konto löschen</button>
</div>
</div>
</section>
<!-- Schnellzugriff Kategorien -->
<section class="py-12 px-4 -mt-10">
<div class="max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="bg-white p-6 rounded-2xl shadow-lg hover-lift cursor-pointer border border-gray-100" onclick="quickSearch('Konto')">
<div class="w-12 h-12 bg-blue-100 rounded-xl flex items-center justify-center mb-4">
<i data-lucide="user" class="w-6 h-6 text-blue-600"></i>
</div>
<h3 class="font-bold text-lg mb-2">Konto & Profil</h3>
<p class="text-gray-600 text-sm">Verwalte deine Einstellungen und persönlichen Daten</p>
</div>
<div class="bg-white p-6 rounded-2xl shadow-lg hover-lift cursor-pointer border border-gray-100" onclick="quickSearch('Zahlung')">
<div class="w-12 h-12 bg-green-100 rounded-xl flex items-center justify-center mb-4">
<i data-lucide="credit-card" class="w-6 h-6 text-green-600"></i>
</div>
<h3 class="font-bold text-lg mb-2">Zahlungen & Abos</h3>
<p class="text-gray-600 text-sm">Rechnungen, Zahlungsmethoden und Abonnements</p>
</div>
<div class="bg-white p-6 rounded-2xl shadow-lg hover-lift cursor-pointer border border-gray-100" onclick="quickSearch('Technisch')">
<div class="w-12 h-12 bg-purple-100 rounded-xl flex items-center justify-center mb-4">
<i data-lucide="settings" class="w-6 h-6 text-purple-600"></i>
</div>
<h3 class="font-bold text-lg mb-2">Technischer Support</h3>
<p class="text-gray-600 text-sm">Fehlerbehebung und technische Probleme</p>
</div>
<div class="bg-white p-6 rounded-2xl shadow-lg hover-lift cursor-pointer border border-gray-100" onclick="quickSearch('Sicherheit')">
<div class="w-12 h-12 bg-red-100 rounded-xl flex items-center justify-center mb-4">
<i data-lucide="shield" class="w-6 h-6 text-red-600"></i>
</div>
<h3 class="font-bold text-lg mb-2">Sicherheit & Datenschutz</h3>
<p class="text-gray-600 text-sm">Datenschutz, Sicherheitseinstellungen und 2FA</p>
</div>
</div>
</section>
<!-- KI-Assistent Section -->
<section id="ki-assistent" class="py-16 px-4 bg-white">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-12">
<span class="bg-purple-100 text-purple-700 px-4 py-1 rounded-full text-sm font-semibold">NEU</span>
<h2 class="text-3xl md:text-4xl font-bold mt-4 mb-4">KI-Support Assistent</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Unser intelligenter Assistent beantwortet deine Fragen in Echtzeit. Verfügbar 24/7 für sofortige Hilfe.</p>
</div>
<div class="grid lg:grid-cols-3 gap-8">
<!-- Chat Interface -->
<div class="lg:col-span-2 bg-gray-50 rounded-3xl border border-gray-200 overflow-hidden shadow-xl">
<div class="bg-white border-b border-gray-200 p-4 flex items-center justify-between">
<div class="flex items-center gap-3">
<div class="relative">
<div class="w-10 h-10 gradient-bg rounded-full flex items-center justify-center">
<i data-lucide="bot" class="w-5 h-5 text-white"></i>
</div>
<div class="absolute bottom-0 right-0 w-3 h-3 bg-green-500 border-2 border-white rounded-full"></div>
</div>
<div>
<h3 class="font-bold text-gray-900">Oelchen AI</h3>
<p class="text-xs text-gray-500">Online • Antwortet sofort</p>
</div>
</div>
<button onclick="clearChat()" class="text-gray-400 hover:text-gray-600">
<i data-lucide="trash-2" class="w-5 h-5"></i>
</button>
</div>
<div id="chat-messages" class="h-96 overflow-y-auto p-4 space-y-4 bg-gray-50">
<!-- Willkommensnachricht -->
<div class="flex gap-3 chat-message">
<div class="w-8 h-8 gradient-bg rounded-full flex-shrink-0 flex items-center justify-center">
<i data-lucide="bot" class="w-4 h-4 text-white"></i>
</div>
<div class="bg-white p-4 rounded-2xl rounded-tl-none shadow-sm max-w-[80%] border border-gray-100">
<p class="text-gray-800">Hallo! 👋 Ich bin dein KI-Assistent für Oelchen. Wie kann ich dir heute helfen?</p>
<div class="mt-3 flex flex-wrap gap-2">
<button onclick="sendQuickMessage('Wie ändere ich mein Passwort?')" class="text-xs bg-purple-50 text-purple-700 px-3 py-1 rounded-full hover:bg-purple-100 transition">Passwort ändern</button>
<button onclick="sendQuickMessage('Wie kündige ich mein Abo?')" class="text-xs bg-purple-50 text-purple-700 px-3 py-1 rounded-full hover:bg-purple-100 transition">Abo kündigen</button>
<button onclick="sendQuickMessage('Ich habe einen Fehler gefunden')" class="text-xs bg-purple-50 text-purple-700 px-3 py-1 rounded-full hover:bg-purple-100 transition">Fehler melden</button>
</div>
</div>
</div>
</div>
<div class="p-4 bg-white border-t border-gray-200">
<div class="flex gap-2">
<input type="text"
id="chat-input"
placeholder="Schreibe deine Nachricht..."
class="flex-1 px-4 py-3 rounded-xl border border-gray-200 focus:outline-none focus:border-purple-500 focus:ring-2 focus:ring-purple-200 transition"
onkeypress="handleChatKeypress(event)">
<button onclick="sendMessage()" class="gradient-bg text-white px-6 py-3 rounded-xl hover:opacity-90 transition flex items-center gap-2">
<i data-lucide="send" class="w-5 h-5"></i>
</button>
</div>
<p class="text-xs text-gray-400 mt-2 text-center">Powered by Oelchen AI • Antworten werden generiert</p>
</div>
</div>
<!-- Info Sidebar -->
<div class="space-y-6">
<div class="bg-purple-50 rounded-2xl p-6 border border-purple-100">
<h4 class="font-bold text-purple-900 mb-3 flex items-center gap-2">
<i data-lucide="sparkles" class="w-5 h-5"></i>
KI-Funktionen
</h4>
<ul class="space-y-3 text-sm text-purple-800">
<li class="flex items-start gap-2">
<i data-lucide="check-circle" class="w-4 h-4 mt-0.5 flex-shrink-0"></i>
<span>Natürliche Sprachverarbeitung für komplexe Anfragen</span>
</li>
<li class="flex items-start gap-2">
<i data-lucide="check-circle" class="w-4 h-4 mt-0.5 flex-shrink-0"></i>
<span>Kontextbewusste Antworten basierend auf deinem Konto</span>
</li>
<li class="flex items-start gap-2">
<i data-lucide="check-circle" class="w-4 h-4 mt-0.5 flex-shrink-0"></i>
<span>Automatische Eskalation zu menschlichen Agenten</span>
</li>
</ul>
</div>
<div class="bg-white rounded-2xl p-6 border border-gray-200 shadow-sm">
<h4 class="font-bold text-gray-900 mb-3">Betriebszeiten</h4>
<div class="space-y-2 text-sm">
<div class="flex justify-between">
<span class="text-gray-600">KI-Assistent:</span>
<span class="text-green-600 font
<script src="https://deepsite.hf.co/deepsite-badge.js"></script>