37 lines
1.5 KiB
HTML
37 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="en" style="color-scheme: dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/icons/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>ResolutionFlow — AI-Powered Troubleshooting for MSPs</title>
|
|
<meta name="description" content="Transform troubleshooting into guided workflows with automatic documentation" />
|
|
|
|
<!-- Google Fonts -->
|
|
<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=Bricolage+Grotesque:wght@400;600;700;800&family=IBM+Plex+Sans:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
|
|
|
<!-- PWA Icons -->
|
|
<link rel="apple-touch-icon" href="/icons/app-icon-gradient.svg" />
|
|
<meta name="theme-color" content="#0e1016" />
|
|
|
|
<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>
|