122 lines
5.4 KiB
HTML
122 lines
5.4 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="de">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<title>Luna · PhysioTutor</title>
|
||
|
|
<meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover">
|
||
|
|
<meta name="theme-color" content="#0a0a0f">
|
||
|
|
<meta name="description" content="Luna — dein KI-PhysioTutor. Gamified lernen mit Chat, Quiz, Flashcards und Fortschritts-Tracking. Läuft im deutschen Rechenzentrum.">
|
||
|
|
<link rel="stylesheet" href="styles.css">
|
||
|
|
<script>window.__LUNA_KEY__ = 'qb_drfbhe3w6j2r7199w2';</script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="app" role="application" aria-label="Luna PhysioTutor">
|
||
|
|
|
||
|
|
<header class="topbar">
|
||
|
|
<div class="brand">
|
||
|
|
<span class="brand-icon" aria-hidden="true">L</span>
|
||
|
|
<span>Luna <small>PhysioTutor</small></span>
|
||
|
|
</div>
|
||
|
|
<div class="spacer"></div>
|
||
|
|
<span class="status" role="status" aria-live="polite">Online</span>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<nav class="tabbar" role="tablist" aria-label="Modi">
|
||
|
|
<button class="tab" role="tab" aria-selected="true" aria-controls="view-chat" data-mode="chat">
|
||
|
|
Chat
|
||
|
|
<span class="tab-kbd">⌃1</span>
|
||
|
|
</button>
|
||
|
|
<button class="tab" role="tab" aria-selected="false" aria-controls="view-quiz" data-mode="quiz">
|
||
|
|
Quiz
|
||
|
|
<span class="tab-kbd">⌃2</span>
|
||
|
|
</button>
|
||
|
|
<button class="tab" role="tab" aria-selected="false" aria-controls="view-flash" data-mode="flash">
|
||
|
|
Karten
|
||
|
|
<span class="tab-kbd">⌃3</span>
|
||
|
|
</button>
|
||
|
|
<button class="tab" role="tab" aria-selected="false" aria-controls="view-progress" data-mode="progress">
|
||
|
|
Fortschritt
|
||
|
|
<span class="tab-kbd">⌃4</span>
|
||
|
|
</button>
|
||
|
|
<button class="tab" role="tab" aria-selected="false" aria-controls="view-curriculum" data-mode="curriculum">
|
||
|
|
Lehrplan
|
||
|
|
<span class="tab-kbd">⌃5</span>
|
||
|
|
</button>
|
||
|
|
</nav>
|
||
|
|
|
||
|
|
<main class="main">
|
||
|
|
<!-- CHAT -->
|
||
|
|
<section id="view-chat" class="view" role="tabpanel" aria-labelledby="tab-chat" data-active="true">
|
||
|
|
<div id="welcome-screen" class="welcome hidden" aria-hidden="true">
|
||
|
|
<h2>Willkommen bei Luna!</h2>
|
||
|
|
<p>Ich bin dein:e KI-Tutor:in für Physiotherapie, Pflege, Physiologie & Anatomie. Alles läuft im deutschen Rechenzentrum — keine Daten verlassen Europa.</p>
|
||
|
|
<div class="mode-grid">
|
||
|
|
<button class="mode-card" data-goto="chat">
|
||
|
|
<strong>💬 Chat</strong>
|
||
|
|
<span>Frag mich alles zu deinem Stoff, Sokratisch erklärt.</span>
|
||
|
|
</button>
|
||
|
|
<button class="mode-card" data-goto="quiz">
|
||
|
|
<strong>🎯 Quiz</strong>
|
||
|
|
<span>Multiple-Choice mit Erklärungen und XP-Belohnung.</span>
|
||
|
|
</button>
|
||
|
|
<button class="mode-card" data-goto="flash">
|
||
|
|
<strong>🃏 Flashcards</strong>
|
||
|
|
<span>Karteikarten mit Spaced-Repetition.</span>
|
||
|
|
</button>
|
||
|
|
<button class="mode-card" data-goto="progress">
|
||
|
|
<strong>📊 Fortschritt</strong>
|
||
|
|
<span>XP, Streaks, Mastery, Abzeichen.</span>
|
||
|
|
</button>
|
||
|
|
<button class="mode-card" data-goto="curriculum">
|
||
|
|
<strong>📚 Lehrplan</strong>
|
||
|
|
<span>Kompletter Themenbaum — 5 Curricula.</span>
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
<p style="font-size:.82rem;color:var(--text-mute)">In 3 Sätzen: Chat für Verständnis → Quiz zum Testen → Flashcards zum Merken. Fortschritt zeigt dir, was schon sitzt; der Lehrplan gibt Orientierung.</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div id="chat-box" class="chat-box" aria-live="polite" aria-label="Gespräch"></div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<!-- QUIZ -->
|
||
|
|
<section id="view-quiz" class="view" role="tabpanel" aria-labelledby="tab-quiz">
|
||
|
|
<div id="quiz-host"></div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<!-- FLASHCARDS -->
|
||
|
|
<section id="view-flash" class="view" role="tabpanel" aria-labelledby="tab-flash">
|
||
|
|
<div id="flash-host"></div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<!-- PROGRESS -->
|
||
|
|
<section id="view-progress" class="view" role="tabpanel" aria-labelledby="tab-progress">
|
||
|
|
<div id="progress-host"></div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<!-- CURRICULUM -->
|
||
|
|
<section id="view-curriculum" class="view" role="tabpanel" aria-labelledby="tab-curr">
|
||
|
|
<div id="curr-host"></div>
|
||
|
|
</section>
|
||
|
|
</main>
|
||
|
|
|
||
|
|
<form id="composer-form" class="composer" aria-label="Nachricht verfassen">
|
||
|
|
<div id="attach-strip" class="attach-strip" aria-live="polite"></div>
|
||
|
|
<div class="composer-row">
|
||
|
|
<button type="button" class="btn-attach" id="composer-attach" aria-label="Datei anhängen" title="Datei anhängen (PDF, Bild, Text — max 5 Dateien, 8 MB)">📎</button>
|
||
|
|
<input type="file" id="composer-file" multiple accept=".pdf,.txt,.md,.csv,.json,.xml,.yaml,.yml,.log,.png,.jpg,.jpeg,.webp,.gif" hidden>
|
||
|
|
<textarea id="composer" rows="1" placeholder="Frag Luna — Enter zum Senden, Shift+Enter für Zeilenumbruch" aria-label="Nachricht"></textarea>
|
||
|
|
<button type="submit" class="btn-primary" id="composer-send">Senden</button>
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
|
||
|
|
<footer class="footer">
|
||
|
|
Sovereign AI · Deutscher Bunker · <a href="https://qognio.com">Qognio</a> · DSGVO-konform · Keine externen Fonts · Keine Cookies
|
||
|
|
</footer>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div id="toast-stack" class="toast-stack" aria-live="polite"></div>
|
||
|
|
|
||
|
|
<script src="app.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|