diff --git a/components/personal-card/elements/ContactsButtons.tsx b/components/personal-card/elements/ContactsButtons.tsx index 0cfe13d..f0f97b7 100644 --- a/components/personal-card/elements/ContactsButtons.tsx +++ b/components/personal-card/elements/ContactsButtons.tsx @@ -30,15 +30,17 @@ const typeToIcon: { [key in ContactType]: [IconDefinition, string?] } = { const ContactComp = ({ id, type }: Contact) => { const iconDescr = typeToIcon[type]; return ( - - - +
+ + + +
); }; export default ({ contacts }: Props) => ( -
{contacts.map((c) => ContactComp(c))}
+
{contacts.map((c) => ContactComp(c))}
); diff --git a/pages/index.tsx b/pages/index.tsx index 35cc3fa..2299110 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -4,7 +4,7 @@ import PersonalCard from '../components/personal-card/PersonalCard'; const Home = () => { return ( -
+