footer: fix broken links

This commit is contained in:
desmukh 2023-01-09 00:16:02 +05:00
parent f5ff30948d
commit 589aec3c43
1 changed files with 2 additions and 2 deletions

View File

@ -106,8 +106,8 @@ const Footer = () => (
<Stack spacing={1} alignItems="center">
<ConnectWithUs />
<Stack direction="row" spacing={2}>
{connectLinks.map(({ label, path }) => (
<Link key={label} to={path} fontSize={10}>
{connectLinks.map(({ label, url }) => (
<Link key={label} href={url} target="_blank" fontSize={10}>
{label}
</Link>
))}