diff --git a/public/img/team-photos/MihailVladov.png b/public/img/team-photos/MihailVladov.png new file mode 100644 index 000000000..8eb3b43b1 Binary files /dev/null and b/public/img/team-photos/MihailVladov.png differ diff --git a/public/img/team-photos/NinaKonova.jpg b/public/img/team-photos/NinaKonova.jpg new file mode 100644 index 000000000..85899e99b Binary files /dev/null and b/public/img/team-photos/NinaKonova.jpg differ diff --git a/public/img/team-photos/TeodoraGeorgieva.jpg b/public/img/team-photos/TeodoraGeorgieva.jpg new file mode 100644 index 000000000..61f34474e Binary files /dev/null and b/public/img/team-photos/TeodoraGeorgieva.jpg differ diff --git a/src/components/client/about/helpers/activeMembersData.tsx b/src/components/client/about/helpers/activeMembersData.tsx index fdffe3200..c4b23f2b7 100644 --- a/src/components/client/about/helpers/activeMembersData.tsx +++ b/src/components/client/about/helpers/activeMembersData.tsx @@ -144,4 +144,22 @@ export const data: TeamData[] = [ description: 'Дизайн, UX', linkedInProfile: 'https://www.linkedin.com/in/martina-mitz/', }, + { + img: '/img/team-photos/MihailVladov.png', + name: 'Михаил Владов', + description: 'Социални медии', + linkedInProfile: 'https://www.linkedin.com/in/mihail-vladov-268616172/', + }, + { + img: '/img/team-photos/NinaKonova.jpg', + name: 'Нина Конова', + description: 'Социални медии', + linkedInProfile: 'https://www.linkedin.com/in/nina-konova-59589a14a/', + }, + { + img: '/img/team-photos/TeodoraGeorgieva.jpg', + name: 'Теодора Георгиева', + description: 'Социални медии', + linkedInProfile: 'https://www.linkedin.com/in/teodorageorgieva/', + }, ] diff --git a/src/components/client/about/sections/ActiveMembersSection/ActiveMembersSection.styled.tsx b/src/components/client/about/sections/ActiveMembersSection/ActiveMembersSection.styled.tsx index 63793a56e..460d23036 100644 --- a/src/components/client/about/sections/ActiveMembersSection/ActiveMembersSection.styled.tsx +++ b/src/components/client/about/sections/ActiveMembersSection/ActiveMembersSection.styled.tsx @@ -17,6 +17,6 @@ export const ТeamMemberWrapper = styled(Grid)(() => ({ flex: '1 0 30%', }, [theme.breakpoints.up('lg')]: { - flex: '1 0 14%', + flex: '1 0 12%', }, }))