-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.44 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script>
(function () {
try {
const theme = localStorage.getItem('theme-preference') || 'light';
document.documentElement.setAttribute('data-theme', theme);
document.documentElement.style.colorScheme = theme === 'dark' ? 'dark' : 'light';
} catch (_) {
document.documentElement.setAttribute('data-theme', 'light');
document.documentElement.style.colorScheme = 'light';
}
})();
</script>
<title>Toolbox Installer - Inicio</title>
<link rel="stylesheet" href="css/base-styles.css">
<link rel="stylesheet" href="css/generator.css">
<link rel="stylesheet" href="css/home.css">
</head>
<body>
<div class="page-wrapper home-page-wrapper">
<header class="page-header home-header">
<h1>Toolbox Installer</h1>
<button type="button" id="themeToggle" class="theme-toggle" aria-label="Switch to dark mode" title="Dark mode">
🌙
</button>
</header>
<main class="home-main">
<a href="desktop.html" class="home-link home-link-desktop">Desktop OS</a>
<a href="mobile.html" class="home-link home-link-mobile">Mobile OS</a>
<a href="vscode.html" class="home-link home-link-vscode">VS Code Extensions</a>
</main>
<footer class="home-footer">
<p>© 2026 Toolbox Installer</p>
</footer>
</div>
<script type="module" src="js/modules/theme-manager.js"></script>
</body>
</html>