Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 257892e

Browse files
authored
feat: add links to partners (#320)
* Added links to the partner icons * change <a> with Link tag * changes accordingly
1 parent 7413041 commit 257892e

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

src/components/Footer.jsx

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ export function Footer() {
2525
>
2626
{[
2727
[
28-
{ name: 'WeMakeDevs', logo: WeMakeDevs },
29-
{ name: '4C', logo: ContentCreators4Cs },
28+
{ name: 'WeMakeDevs', logo: WeMakeDevs , href: 'https://wemakedevs.org/', title: 'WeMakeDevs'},
29+
{ name: '4C', logo: ContentCreators4Cs , href: ' https://www.4c.rocks/', title: '4C'},
3030
],
3131
].map((group, groupIndex) => (
3232
<li key={groupIndex}>
@@ -36,12 +36,14 @@ export function Footer() {
3636
>
3737
{group.map((company) => (
3838
<li key={company.name} className="flex">
39-
<Image
40-
src={company.logo}
41-
alt={company.name}
42-
unoptimized
43-
width="50"
44-
/>
39+
<Link href={company.href} target="_blank" title={company.title}>
40+
<Image
41+
src={company.logo}
42+
alt={company.name}
43+
unoptimized
44+
width="50"
45+
/>
46+
</Link>
4547
</li>
4648
))}
4749
</ul>

0 commit comments

Comments
 (0)