diff --git a/src/components/Footer.svelte b/src/components/Footer.svelte index 7e9d38c..8bd56f2 100644 --- a/src/components/Footer.svelte +++ b/src/components/Footer.svelte @@ -19,6 +19,7 @@
{t('manager_title', $language)}
{t('address', $language)}
{t('phone', $language)}
+{t('email', $language)} a.svynar@gmail.com
@@ -75,6 +76,17 @@ line-height: 1.5; } + .contact-info a { + color: var(--primary-color); + text-decoration: none; + transition: color 0.2s ease; + } + + .contact-info a:hover { + color: var(--primary-hover); + text-decoration: underline; + } + .footer-bottom { border-top: 1px solid var(--border-color); padding-top: 1rem; diff --git a/src/translations.js b/src/translations.js index fac3132..18e8adf 100644 --- a/src/translations.js +++ b/src/translations.js @@ -44,6 +44,7 @@ export const translations = { contact_title: 'Contact Information', manager_title: 'Oleksandr Svynar', office_address: 'Office Address:', + email: 'Email:', address: '01033, Ukraine, Kyiv, 48, 50A Zhylianska St., Office 13', phone: 'Phone: +38 050 465 46 18' }, @@ -92,6 +93,7 @@ export const translations = { contact_title: 'Контактна інформація', manager_title: 'Свинар Олександр', office_address: 'Адреса офісу:', + email: 'Електронна пошта:', address: '01033, Україна, м. Київ, вул. Жилянська, 48, 50А, офіс 13', phone: 'Телефон: +38 050 465 46 18' }