feat: Integrate chat feature into main navigation

- Add a "Chat" link to the main navigation for both desktop and mobile views.
- Include a message icon for visual identification and support for multiple languages (English, Spanish, French).
- Update documentation to reflect navigation integration and usage instructions for the chat feature.
This commit is contained in:
padreug 2025-08-05 20:41:58 +02:00
parent 0b62418310
commit 37642ca48c
6 changed files with 32 additions and 2 deletions

View file

@ -8,6 +8,7 @@ const messages: LocaleMessages = {
faq: 'FAQ',
events: 'Events',
market: 'Market',
chat: 'Chat',
login: 'Login',
logout: 'Logout'
},

View file

@ -8,6 +8,7 @@ const messages: LocaleMessages = {
faq: 'Preguntas Frecuentes',
events: 'Eventos',
market: 'Mercado',
chat: 'Chat',
login: 'Iniciar Sesión',
logout: 'Cerrar Sesión'
},

View file

@ -8,6 +8,7 @@ const messages: LocaleMessages = {
faq: 'FAQ',
events: 'Événements',
market: 'Marché',
chat: 'Chat',
login: 'Connexion',
logout: 'Déconnexion'
},

View file

@ -6,6 +6,7 @@ export interface LocaleMessages {
faq: string
events: string
market: string
chat: string
login: string
logout: string
}