-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (91 loc) · 3.2 KB
/
index.html
File metadata and controls
101 lines (91 loc) · 3.2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="es" data-theme="night">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Inicio | StreamHUB</title>
<meta
name="description"
content="StreamHUB es un portal de streamers de la comunidad venezolana."
/>
<meta name="theme-color" content="#050921" />
<link rel="icon" href="favicon.ico" />
<link rel="stylesheet" href="css/home.css" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4HJSCPDFJ6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4HJSCPDFJ6');
</script>
</head>
<body>
<header class="headerbar shell">
<div class="logo" aria-label="StreamHub">
<a href="/directorio"><span class="logo-stream">Stream</span><span class="logo-hub">Hub</span></a>
</div>
<button
id="themeToggle"
class="theme-toggle"
type="button"
aria-label="Cambiar tema"
title="Cambiar tema"
>
<span class="theme-toggle-sun" aria-hidden="true">☀</span>
<span class="theme-toggle-moon" aria-hidden="true">☾</span>
</button>
</header>
<main>
<section class="landing-hero">
<div class="landing-overlay"></div>
<div class="landing-content shell">
<div class="landing-copy">
<h1>Portal de streamers de la comunidad venezolana</h1>
<p class="landing-subtitle">
Trabajo hecho desde la comunidad para la comunidad.
</p>
<div class="landing-actions">
<a href="../directorio/" class="landing-btn landing-btn-primary">Directorio</a>
<a href="../FAQ/" class="landing-btn">FAQ</a>
<a href="../registro/" class="landing-btn">Registro</a>
<a href="../nota/" class="landing-btn">Nota </a>
<a href="https://whatsapp.com/channel/0029VbAxfhE3mFYAsxNuck0v" class="landing-btn landing-btn-whatsapp">Canal de stickers de la comunidad</a>
</div>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="shell footer-inner">
<p>2026 · StreamHUB™</p>
<nav class="footer-nav" aria-label="Footer">
<a href="../">Inicio</a>
<a href="../FAQ/">FAQ</a>
<a href="../registro/">Registro</a>
</nav>
</div>
</footer>
<script>
(() => {
const root = document.documentElement;
const savedTheme = localStorage.getItem("theme");
const themeToggle = document.getElementById("themeToggle");
if (savedTheme === "day" || savedTheme === "night") {
root.setAttribute("data-theme", savedTheme);
} else if (!root.getAttribute("data-theme")) {
root.setAttribute("data-theme", "day");
}
if (themeToggle) {
themeToggle.addEventListener("click", function () {
const current =
root.getAttribute("data-theme") === "night" ? "night" : "day";
const next = current === "night" ? "day" : "night";
root.setAttribute("data-theme", next);
localStorage.setItem("theme", next);
});
}
})();
</script>
</body>
</html>