diff --git a/src/components/Footer/Footer.js b/src/components/Footer/Footer.js
index 3ebd810..e0b488e 100644
--- a/src/components/Footer/Footer.js
+++ b/src/components/Footer/Footer.js
@@ -54,32 +54,43 @@ export const Footer = () => {
return (
-
{t('scienceClub')}
+
+ {t('scienceClub')}
+
-
{t('iTeam')}
- i::team {t('uniName')}
+
+ {' '}
+ {t('iTeam')}{' '}
+
+
+ i::team {t('uniName')}
+
Uniwersytetu Ekonomicznego
{t('uniTown')}
-
+
{t('board')}
zarzad@example.com
{isDarkTheme ? (
<>
-
+
-
+
{
>
) : (
<>
-
+
-
+
{
-
{t('address')}
+ {t('address')}
-
+
Rakowicka 27, 31-510
{t('town')}
@@ -120,28 +135,27 @@ export const Footer = () => {
-
{t('supervisor')}
+
+ {t('supervisor')}
+
mgr Katarzyna Wójcik
katwoj@fakemail.com
-
+
{t('findUs')}
-
-
Linki:
+
{t('links')}
{LINKS.map(({ title, to, arialLabel, type }) => (
diff --git a/src/components/ItemTile/ItemTile.module.scss b/src/components/ItemTile/ItemTile.module.scss
index 69595a2..1aa7322 100644
--- a/src/components/ItemTile/ItemTile.module.scss
+++ b/src/components/ItemTile/ItemTile.module.scss
@@ -36,7 +36,7 @@
margin-top: 15px;
}
-@media (max-width: 768px){
+@media (max-width: $breakpoint-desktop){
.border{
width: min-content;
}
@@ -57,8 +57,6 @@
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.content {
- width: 326px;
- height: 219px;
overflow-y: hidden;
}
.title {
diff --git a/src/i18n/enTranslation.js b/src/i18n/enTranslation.js
index 1161935..4437fe0 100644
--- a/src/i18n/enTranslation.js
+++ b/src/i18n/enTranslation.js
@@ -19,6 +19,7 @@ const enTranslations = {
address: 'Address',
ourProjects: 'Our projects',
lang: 'English',
+ links: 'Links:',
ariaLabelSidebarButton: 'Sidebar Button',
ariaLabelSidebarCloseButton: 'close sidebar button',
ariaLabelLangButton: 'Language switching button',
@@ -30,6 +31,18 @@ const enTranslations = {
ariaLabelNews: 'Link to News',
ariaLabelJoinUs: 'Link to Join Us',
ariaLabelContact: 'Link to Contact',
+ ariaLabelTeamName: 'Name of the team',
+ ariaLabelUniName: 'Name of the university',
+ ariaLabeluniTown: 'Name of the town',
+ ariaLabelboard: 'Contact to the science club board',
+ ariaLabelAddress: 'Address of our University, and number of our room',
+ ariaLabelSupervisor: 'Contact details to our supervisor',
+ ariaLabelfindUs: 'Details where to find us on social media',
+ ariaLabelGitHub: 'Link to our GitHub',
+ ariaLabelFacebook: 'Link to our Facebook',
+ ariaLabelFooter: 'Footer',
+ ariaLabelScienceClub: 'Science Club',
+ ariaLabelAddressWrapper: 'Address details',
},
};
diff --git a/src/i18n/plTranslation.js b/src/i18n/plTranslation.js
index d9250ba..2b9ad55 100644
--- a/src/i18n/plTranslation.js
+++ b/src/i18n/plTranslation.js
@@ -19,6 +19,7 @@ const plTranslations = {
address: 'Adres',
ourProjects: 'Nasze projekty',
lang: 'Polski',
+ links: 'Linki: ',
ariaLabelSidebarButton: 'przycisk do otwarcia sidebara',
ariaLabelSidebarCloseButton: 'przycisk do zamknięcia sidebara',
ariaLabelLangButton: 'przycisk do zmiany jezyka',
@@ -30,6 +31,18 @@ const plTranslations = {
ariaLabelNews: 'Link do Aktualności',
ariaLabelJoinUs: 'Link do Dołącz Do Nas',
ariaLabelContact: 'Link do Kontakt',
+ ariaLabelTeamName: 'Nazwa koła naukowego',
+ ariaLabelUniName: 'Nazwa uniwersytetu',
+ ariaLabeluniTown: 'Nazwa miasta',
+ ariaLabelboard: 'Kontakt do zarządu',
+ ariaLabelAddress: 'Adres uniwersytetu',
+ ariaLabelSupervisor: 'Dane kontaktowe do opiekuna koła',
+ ariaLabelfindUs: 'Informacja gdzie nas znaleźć w mediach społecznych',
+ ariaLabelGitHub: 'Link do naszego Githuba',
+ ariaLabelFacebook: 'Link do naszego Facebooka',
+ ariaLabelFooter: 'Stopka',
+ ariaLabelScienceClub: 'Koło Naukowe',
+ ariaLabelAddressWrapper: 'Detale adresowe',
},
};