Skip to content

Commit

Permalink
feat: add links to partners (EddieHubCommunity#320)
Browse files Browse the repository at this point in the history
* Added links to the partner icons

* change <a> with Link tag

* changes accordingly
  • Loading branch information
ninadvyas authored Dec 29, 2023
1 parent 7413041 commit 257892e
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ export function Footer() {
>
{[
[
{ name: 'WeMakeDevs', logo: WeMakeDevs },
{ name: '4C', logo: ContentCreators4Cs },
{ name: 'WeMakeDevs', logo: WeMakeDevs , href: 'https://wemakedevs.org/', title: 'WeMakeDevs'},
{ name: '4C', logo: ContentCreators4Cs , href: ' https://www.4c.rocks/', title: '4C'},
],
].map((group, groupIndex) => (
<li key={groupIndex}>
Expand All @@ -36,12 +36,14 @@ export function Footer() {
>
{group.map((company) => (
<li key={company.name} className="flex">
<Image
src={company.logo}
alt={company.name}
unoptimized
width="50"
/>
<Link href={company.href} target="_blank" title={company.title}>
<Image
src={company.logo}
alt={company.name}
unoptimized
width="50"
/>
</Link>
</li>
))}
</ul>
Expand Down

0 comments on commit 257892e

Please sign in to comment.