Skip to content

Commit

Permalink
fix: added aria to sponsors
Browse files Browse the repository at this point in the history
  • Loading branch information
nethen committed Dec 14, 2024
1 parent 3d0f1c8 commit 585945b
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions src/landing/Sponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,32 +15,43 @@ const SvgChildren = [
component: <FellowsFund styling={svgSizeStyling} />,
linkURL: "https://www.fellowsfundvc.com/",
key: "fellows",
name: "Fellows Fund",
},
{
component: <GFT styling={svgSizeStyling} />,
linkURL: "https://www.gft.vc/",
key: "gft",
name: "GFT Ventures",
},
{ component: <GFT styling={svgSizeStyling} />, linkURL: "https://www.gft.vc/", key: "gft" },
{
component: <Lombard styling={svgSizeStyling} />,
linkURL: "https://lombardstreet.vc/",
key: "lombard",
name: "Lombardstreet Ventures",
},
{
component: <NinjaCapital styling={svgSizeStyling} />,
linkURL: "https://www.ninjacapital.com/",
key: "ninja",
name: "Ninja Capital",
},
{
component: <YCommunity styling={svgSizeStyling} />,
linkURL: "https://www.ycombinator.com/companies/k-scale-labs",
key: "yCommunity",
key: "yCombinator",
name: "Y Combinator",
},
{
component: <AIGrant styling={svgSizeStyling} />,
linkURL: "https://aigrant.com/",
key: "aiGrant",
name: "AI Grant",
},
{
component: <Pioneer styling={svgSizeStyling} />,
linkURL: "https://www.pioneerfund.vc/",
key: "pioneer",
name: "Pioneer",
},
];

Expand All @@ -58,7 +69,12 @@ const Sponsors = () => {
<Marquee className={""}>
{SvgChildren.map((sponsor, index) => {
return (
<Link href={sponsor.linkURL} target={"_blank"} key={index}>
<Link
href={sponsor.linkURL}
target={"_blank"}
key={index}
aria-label={`Investor:${sponsor.name}`}
>
{sponsor.component}
</Link>
);
Expand Down

0 comments on commit 585945b

Please sign in to comment.