diff --git a/apps/frontend/src/i18n/locales/en.ts b/apps/frontend/src/i18n/locales/en.ts index 097002f..c9e020d 100644 --- a/apps/frontend/src/i18n/locales/en.ts +++ b/apps/frontend/src/i18n/locales/en.ts @@ -87,6 +87,10 @@ export default { desc: 'Follow us on Facebook for the latest news and updates.', link: 'Visit Facebook Page', }, + linkedin: { + desc: 'Follow our team on LinkedIn for professional updates.', + link: 'Visit LinkedIn Page', + }, spotify: { desc: 'Listen to our community playlist while coding or gaming!', link: 'Open Playlist', diff --git a/apps/frontend/src/i18n/locales/hu.ts b/apps/frontend/src/i18n/locales/hu.ts index 5efd21a..c5a9623 100644 --- a/apps/frontend/src/i18n/locales/hu.ts +++ b/apps/frontend/src/i18n/locales/hu.ts @@ -87,6 +87,10 @@ export default { desc: 'Kövess minket Facebookon a legfrissebb hírekért és frissítésekért.', link: 'Facebook oldal megtekintése', }, + linkedin: { + desc: 'Kövesd a csapatunkat LinkedIn-en a szakmai hírekért.', + link: 'LinkedIn oldal megtekintése', + }, spotify: { desc: 'Hallgasd a közösségi playlist-ünket fejlesztés vagy játék közben!', link: 'Playlist megnyitása', diff --git a/apps/frontend/src/page/contact/ContactPage.vue b/apps/frontend/src/page/contact/ContactPage.vue index 46e35a3..948368f 100644 --- a/apps/frontend/src/page/contact/ContactPage.vue +++ b/apps/frontend/src/page/contact/ContactPage.vue @@ -65,7 +65,7 @@

{{ t('contact.socialDesc') }}

-
+

YouTube

{{ t('contact.youtube.desc') }}

@@ -82,6 +82,14 @@
+
+

LinkedIn

+

{{ t('contact.linkedin.desc') }}

+ + {{ t('contact.linkedin.link') }} + +
+

Spotify

{{ t('contact.spotify.desc') }}

@@ -169,6 +177,9 @@ function openEmail() { .community-link-facebook { @apply text-[#1877F2] font-bold hover:underline inline-flex items-center gap-1; } +.community-link-linkedin { + @apply text-[#0A66C2] font-bold hover:underline inline-flex items-center gap-1; +} .community-link-spotify { @apply text-[#1DB954] font-bold hover:underline inline-flex items-center gap-1; } diff --git a/apps/frontend/src/styles/retro.css b/apps/frontend/src/styles/retro.css index f9fd8d7..a3e769f 100644 --- a/apps/frontend/src/styles/retro.css +++ b/apps/frontend/src/styles/retro.css @@ -922,6 +922,7 @@ .retro-mode .community-link-discord { color: #00ffff !important; text-decoration: underline !important; } .retro-mode .community-link-youtube { color: #a80000 !important; text-decoration: underline !important; } .retro-mode .community-link-facebook { color: #00a8a8 !important; text-decoration: underline !important; } +.retro-mode .community-link-linkedin { color: #0000a8 !important; text-decoration: underline !important; } .retro-mode .community-link-spotify { color: #00a800 !important; text-decoration: underline !important; } /* tui-divider */