Refactor code structure for improved readability and maintainability

This commit is contained in:
Shni
2025-11-05 10:07:24 -06:00
parent b3580724a3
commit b25885d87f
3 changed files with 2 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 KiB

View File

@@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 261.76 226.69"><path d="M161.096.001l-30.225 52.351L100.647.001H-.005l130.877 226.688L261.749.001z" fill="#41b883"/><path d="M161.096.001l-30.225 52.351L100.647.001H52.346l78.526 136.01L209.398.001z" fill="#34495e"/></svg>

Before

Width:  |  Height:  |  Size: 276 B

View File

@@ -4,7 +4,7 @@
<!-- Logo Section --> <!-- Logo Section -->
<div class="logo-section"> <div class="logo-section">
<div class="bot-avatar"> <div class="bot-avatar">
<img :src="botLogo" alt="Amayo Bot" /> <img :src="favicon" alt="Amayo Bot" />
</div> </div>
<span class="bot-name">{{ botName }}</span> <span class="bot-name">{{ botName }}</span>
</div> </div>
@@ -58,7 +58,7 @@ import { useI18n } from 'vue-i18n'
const { t, locale } = useI18n() const { t, locale } = useI18n()
const botLogo = ref('https://cdn.discordapp.com/avatars/1234567890/avatar.png') // Reemplaza con el avatar real del bot const favicon = ref('https://docs.amayo.dev/favicon.ico') // Reemplaza con el avatar real del bot
const botName = ref('Amayo') const botName = ref('Amayo')
const currentTheme = ref('red') const currentTheme = ref('red')