Agregar botón de Inicio en el header
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 24s

Cambios en App.vue:
- Agregar botón Inicio con emoji 🏠 en el topbar
- Botón apunta a https://inicio.nucleoriofrio.com
- Posicionado al inicio de la sección de acciones
- Usa clase .icon-btn para consistencia visual

El botón usa scope extensions para navegar dentro de la PWA.
This commit is contained in:
2025-10-17 04:18:16 -06:00
parent fe4053d90f
commit dc2c373a4f

View File

@@ -2,6 +2,9 @@
<header class="topbar">
<div class="title">RADIUS Nucleo</div>
<div class="actions">
<a class="icon-btn" href="https://inicio.nucleoriofrio.com">
🏠 Inicio
</a>
<button class="icon-btn" @click="toggleTheme">
<img class="icon" :src="theme === 'light' ? '/icons/moon.svg' : '/icons/sun.svg'" alt="theme">
</button>