Skip to content

Commit ff24cd2

Browse files
authored
Merge pull request #53 from pyladies/add_anaconda
Add Anaconda logo
2 parents 44babd7 + af66a7d commit ff24cd2

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed
49.5 KB
Loading

src/components/sponsors_gallery.astro

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ const t = useTranslations(lang);
1010
const champions = [
1111
];
1212
const supporters = [
13+
{
14+
name: "Anaconda",
15+
logo: "/images/sponsors/anaconda.png",
16+
url: "https://www.anaconda.com/",
17+
}
1318
];
1419
const connectors = [
1520
{
@@ -98,15 +103,15 @@ const media_partners = [
98103
}
99104

100105
<!-- Supporters -->
101-
{ supporters.length ?
102-
<h2 class="font-semibold text-yellow-200 text-3xl mt-20">Supporters Sponsors</h2>
106+
{ supporters.length > 0 ?
107+
<h2 class="font-semibold dark:text-white text-3xl mt-20">Supporters</h2>
103108
<div class="mx-auto my-2 max-w-2xl sm:my-5 lg:my-8 lg:max-w-none">
104109
<dl class="grid max-w-xl grid-cols-1 gap-x-8 gap-y-16 lg:max-w-none lg:grid-cols-2">
105110
{
106111
supporters.map((item) => (
107-
<div class="flex flex-col hover:bg-gray-50 dark:hover:bg-red-50">
112+
<div class="flex flex-col dark:bg-slate-300 hover:bg-gray-50 dark:hover:bg-red-50">
108113
<dt class="flex items-center align-center justify-center gap-x-3 text-base font-semibold leading-7 text-black dark:text-white">
109-
<a href={item.url}><img class="w-64 h-64" src={item.logo} /></a>
114+
<a href={item.url}><img class="w-80 h-80" src={item.logo} /></a>
110115
</dt>
111116
</div>
112117
))

0 commit comments

Comments
 (0)