File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,11 @@ const t = useTranslations(lang);
1010const champions = [
1111];
1212const supporters = [
13+ {
14+ name: " Anaconda" ,
15+ logo: " /images/sponsors/anaconda.png" ,
16+ url: " https://www.anaconda.com/" ,
17+ }
1318];
1419const 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 ))
You can’t perform that action at this time.
0 commit comments