Recover and commit the landing-page redesign that had been sitting uncommitted in the working tree: refreshed dark palette (adjusted --lp-bg-alt, electric-blue accent), Atkinson Hyperlegible Next display + body type, and editorial hero/section layout in LandingPage.tsx, with the matching font preload in index.html. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
37 lines
1.7 KiB
HTML
37 lines
1.7 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=Atkinson+Hyperlegible+Next:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Atkinson+Hyperlegible+Mono:wght@400;500&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>
|