Refactor code structure for improved readability and maintainability

This commit is contained in:
2025-10-09 21:33:32 -05:00
parent 09a5ceeeba
commit 36aeb5573a
4 changed files with 310 additions and 5 deletions

View File

@@ -47,12 +47,19 @@
<!-- Botones de Acción -->
<div class="flex flex-col sm:flex-row gap-6 justify-center items-center pt-4">
<a href="#primeros-pasos" class="pixel-btn">
▶ Comenzar ahora
<a href="#primeros-pasos" class="block hover:scale-105 transition-transform duration-300">
<img src="/assets/images/boton_entrar.svg" alt="Comenzar ahora" class="w-full h-auto" style="max-width: 350px; filter: drop-shadow(0 4px 12px rgba(255, 179, 71, 0.3));">
</a>
<button id="toggle-nav" class="pixel-btn pixel-btn-secondary">
☰ Ver comandos
<button id="toggle-nav" class="pixel-btn pixel-btn-secondary flex items-center gap-2">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="3" y="5" width="18" height="2" fill="currentColor" rx="1"/>
<rect x="3" y="11" width="18" height="2" fill="currentColor" rx="1"/>
<rect x="3" y="17" width="18" height="2" fill="currentColor" rx="1"/>
</svg>
<span>Ver comandos</span>
</button>
</div>
</button>
</div>