-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (40 loc) · 1.36 KB
/
Copy pathindex.html
File metadata and controls
52 lines (40 loc) · 1.36 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
<!-- inicio file: index.html -->
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MitaDOM - App ++Avanzada</title>
</head>
<body class="tema-oscuro">
<!-- Layout estructurado para grid-template-areas -->
<!-- Layout estructurado para grid-template-areas -->
<mita-header></mita-header>
<!-- SIDEBAR GLOBAL (Componente con Teleport y Conditional Render) -->
<mita-sidebar></mita-sidebar>
<main id="app-container" aria-live="polite">
<!-- Vista Inicio -->
<div id="vista-inicio" class="vista">
<section class="tarjetas-grid">
<demo-tarjeta></demo-tarjeta>
<demo-tarjeta></demo-tarjeta>
</section>
<section class="formulario-seccion">
<h2>Ingresa tus datos</h2>
<demo-formulario></demo-formulario>
</section>
<section class="ejemplos-seccion" style="grid-column: 1 / -1; margin-top: 1rem;">
<h2>Patrones UI Avanzados</h2>
<demo-shopping-list></demo-shopping-list>
</section>
</div>
</main>
<footer>
<p>Desarrollado con 💚 usando Vanilla JS, MitaDOM y CSS Grid Nativo.</p>
</footer>
<!-- WIDGET DE RENDIMIENTO (Profiler) -->
<mita-profiler></mita-profiler>
<!-- MODAL DE BÚSQUEDA GLOBAL -->
<script type="module" src="/src/main.js"></script>
</body>
</html>