feat: add email contact information to footer and update translations

This commit is contained in:
sha
2025-06-20 22:43:09 +03:00
parent f171c96cca
commit 1fbc3a68c9
2 changed files with 14 additions and 0 deletions
+12
View File
@@ -19,6 +19,7 @@
<p><strong>{t('manager_title', $language)}</strong></p> <p><strong>{t('manager_title', $language)}</strong></p>
<p>{t('address', $language)}</p> <p>{t('address', $language)}</p>
<p>{t('phone', $language)}</p> <p>{t('phone', $language)}</p>
<p>{t('email', $language)} <a href="mailto:a.svynar@gmail.com">a.svynar@gmail.com</a></p>
</div> </div>
</div> </div>
</div> </div>
@@ -75,6 +76,17 @@
line-height: 1.5; 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 { .footer-bottom {
border-top: 1px solid var(--border-color); border-top: 1px solid var(--border-color);
padding-top: 1rem; padding-top: 1rem;
+2
View File
@@ -44,6 +44,7 @@ export const translations = {
contact_title: 'Contact Information', contact_title: 'Contact Information',
manager_title: 'Oleksandr Svynar', manager_title: 'Oleksandr Svynar',
office_address: 'Office Address:', office_address: 'Office Address:',
email: 'Email:',
address: '01033, Ukraine, Kyiv, 48, 50A Zhylianska St., Office 13', address: '01033, Ukraine, Kyiv, 48, 50A Zhylianska St., Office 13',
phone: 'Phone: +38 050 465 46 18' phone: 'Phone: +38 050 465 46 18'
}, },
@@ -92,6 +93,7 @@ export const translations = {
contact_title: 'Контактна інформація', contact_title: 'Контактна інформація',
manager_title: 'Свинар Олександр', manager_title: 'Свинар Олександр',
office_address: 'Адреса офісу:', office_address: 'Адреса офісу:',
email: 'Електронна пошта:',
address: '01033, Україна, м. Київ, вул. Жилянська, 48, 50А, офіс 13', address: '01033, Україна, м. Київ, вул. Жилянська, 48, 50А, офіс 13',
phone: 'Телефон: +38 050 465 46 18' phone: 'Телефон: +38 050 465 46 18'
} }