mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 06:12:03 +00:00
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
36 lines
1.3 KiB
HTML
36 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en" suppressHydrationWarning>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Automaker - Autonomous AI Development Studio</title>
|
|
<meta name="description" content="Build software autonomously with AI agents" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
|
<script>
|
|
// Prevent theme flash - apply stored theme before React hydrates
|
|
(function () {
|
|
try {
|
|
const stored = localStorage.getItem('automaker-storage');
|
|
if (stored) {
|
|
const data = JSON.parse(stored);
|
|
const theme = data.state?.theme;
|
|
if (theme && theme !== 'system' && theme !== 'light') {
|
|
// Apply the actual theme class (dark, retro, dracula, nord, etc.)
|
|
document.documentElement.classList.add(theme);
|
|
} else if (
|
|
theme === 'system' &&
|
|
window.matchMedia('(prefers-color-scheme: dark)').matches
|
|
) {
|
|
document.documentElement.classList.add('dark');
|
|
}
|
|
}
|
|
} catch (e) {}
|
|
})();
|
|
</script>
|
|
</head>
|
|
<body class="antialiased">
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/renderer.tsx"></script>
|
|
</body>
|
|
</html>
|