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"> <Stack spacing={1} alignItems="center">
<ConnectWithUs /> <ConnectWithUs />
<Stack direction="row" spacing={2}> <Stack direction="row" spacing={2}>
{connectLinks.map(({ label, path }) => ( {connectLinks.map(({ label, url }) => (
<Link key={label} to={path} fontSize={10}> <Link key={label} href={url} target="_blank" fontSize={10}>
{label} {label}
</Link> </Link>
))} ))}