refactor: Clean up Navbar component and remove support link

- Remove the "Support" link from the Navbar.vue navigation items to streamline the menu.
- Adjust formatting in Navbar.vue for improved readability and consistency in the template structure.
- Update i18n files to remove references to the "Support" string in English, Spanish, and French locales, enhancing localization accuracy.
This commit is contained in:
padreug 2025-08-02 16:28:28 +02:00
parent 93d30c0255
commit 941b4c3ec5
5 changed files with 16 additions and 17 deletions

View file

@ -6,7 +6,6 @@ const messages: LocaleMessages = {
title: 'Virtual Realm',
directory: 'Directory',
faq: 'FAQ',
support: 'Support',
events: 'Events',
login: 'Login',
logout: 'Logout'

View file

@ -6,7 +6,6 @@ const messages: LocaleMessages = {
home: 'Inicio',
directory: 'Directorio',
faq: 'Preguntas Frecuentes',
support: 'Soporte',
events: 'Eventos',
login: 'Iniciar Sesión',
logout: 'Cerrar Sesión'

View file

@ -6,7 +6,6 @@ const messages: LocaleMessages = {
home: 'Accueil',
directory: 'Répertoire',
faq: 'FAQ',
support: 'Support',
events: 'Événements',
login: 'Connexion',
logout: 'Déconnexion'

View file

@ -4,7 +4,6 @@ export interface LocaleMessages {
home: string
directory: string
faq: string
support: string
events: string
login: string
logout: string