This commit is contained in:
Morten Olsen
2021-08-26 14:40:51 +02:00
parent 315fb5721c
commit 0cc7078b1b
21 changed files with 4051 additions and 109 deletions

View File

@@ -5,7 +5,7 @@ interface Props {
sites: {
title: string,
link: string,
logo: string,
logo: any,
}[];
}
@@ -75,7 +75,7 @@ const Social: React.FC<Props> = ({ sites }) => (
{sites.map(({ title, link, logo }) => (
<ItemWrapper target="_blank" href={link} key={link}>
<InnerWrapper>
<Image src={`/images/logos/${logo}`} />
<Image src={logo.src} />
{title}
</InnerWrapper>
</ItemWrapper>