Skip to content

Commit 44babd7

Browse files
authored
Merge pull request #39 from pyladies/add_individuals
Add Individuals Donors
2 parents 64c4081 + fdbdb66 commit 44babd7

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/components/sponsors_gallery.astro

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@ const partners = [
5353
},
5454
];
5555
const individuals = [
56+
{
57+
name: "Cheuk Ting Ho",
58+
url: "https://www.linkedin.com/in/cheukting-ho/",
59+
},
60+
{
61+
name: "Sayantika Banik",
62+
url: "https://www.linkedin.com/in/sayantika-banik/",
63+
},
5664
];
5765
const media_partners = [
5866
{
@@ -174,7 +182,7 @@ const media_partners = [
174182
individuals.map((item) => (
175183
<div class="flex flex-col hover:bg-gray-50 dark:hover:bg-red-50">
176184
<dt class="flex items-center align-center justify-center gap-x-3 text-base font-semibold leading-7 text-black dark:text-white">
177-
<a href={item.url}><img class="w-64" src={item.logo} /></a>
185+
<a href={item.url}>{item.name}</a>
178186
</dt>
179187
</div>
180188
))

0 commit comments

Comments
 (0)