mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
update
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user