- Add theme store with light/dark/system modes and ThemeToggle component - Prevent flash of wrong theme on initial load via inline script - Add ExportPreviewModal for previewing session exports before download - Add copy-to-clipboard functionality to session export - Implement keyboard shortcuts for tree navigation (1-9 options, Esc back, Enter continue) - Display keyboard hints in tree navigation UI - Fix findNode to safely handle undefined structure parameter - Update page title to "Apoklisis" Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
859 B
HTML
26 lines
859 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Apoklisis</title>
|
|
<script>
|
|
// Prevent flash of wrong theme on initial load
|
|
(function() {
|
|
try {
|
|
const stored = JSON.parse(localStorage.getItem('theme-storage') || '{}');
|
|
const theme = stored.state?.theme || 'system';
|
|
const isDark = theme === 'dark' ||
|
|
(theme === 'system' && window.matchMedia('(prefers-color-scheme: dark)').matches);
|
|
if (isDark) document.documentElement.classList.add('dark');
|
|
} catch (e) {}
|
|
})();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|