Rename system to SIB: update translations, logos, views, stores and logs

This commit is contained in:
2026-03-09 12:19:37 -05:00
parent 027cb80aec
commit d5763cd6d6
25 changed files with 66 additions and 74 deletions

View File

@ -21,8 +21,8 @@
</Transition>
<Transition name="menu-slide">
<div v-if="showMenu" class="menu-dropdown sibu-sidebar">
<div class="sibu-header-plain">
<div v-if="showMenu" class="menu-dropdown sib-sidebar">
<div class="sib-header-plain">
<div class="user-profile-optimized">
<div class="user-avatar-main">
<span class="material-icons user-icon-accent">person</span>
@ -81,7 +81,7 @@
<button v-else class="session-btn logout-solid" @click="handleLogout">
<span class="material-icons">logout</span> {{ t('menu.logout') }}
</button>
<div class="sibu-tag-footer">SIBU SYSTEM v1.2.0</div>
<div class="sib-tag-footer">SIB SYSTEM v1.2.0</div>
</div>
</div>
</Transition>
@ -229,10 +229,10 @@ const handleLogout = () => {
}
/* SIBU SIDEBAR STYLES (SOLID) */
/* SIB SIDEBAR STYLES (SOLID) */
/* SIBU SIDEBAR OPTIMIZED */
.sibu-sidebar {
/* SIB SIDEBAR OPTIMIZED */
.sib-sidebar {
position: fixed;
top: 0;
left: 0;
@ -251,7 +251,7 @@ const handleLogout = () => {
overflow: hidden;
}
.sibu-header-plain {
.sib-header-plain {
padding: 50px 24px 20px;
background: var(--bg-primary);
border-bottom: 2px solid var(--active-color);
@ -420,7 +420,7 @@ const handleLogout = () => {
transform: scale(0.98);
}
.sibu-tag-footer {
.sib-tag-footer {
margin-top: 15px;
text-align: center;
font-size: 10px;

View File

@ -32,7 +32,7 @@ const handleLogin = async () => {
else router.push('/map')
} catch (error: any) {
console.error('SIBU | Error Login:', error)
console.error('SIB | Error Login:', error)
if (error.message?.includes('Invalid login credentials')) {
errorMessage.value = t('auth.invalidCreds')
} else {
@ -50,7 +50,7 @@ const handleLogin = async () => {
<!-- Welcome Text (Mobile-ish) -->
<div class="welcome-header">
<h2>{{ t('auth.loginTab') }}</h2>
<p>Bienvenido de vuelta a SIBU</p>
<p>Bienvenido de vuelta a SIB</p>
</div>
<!-- Input Group -->