|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + |
| 4 | +<head> |
| 5 | + |
| 6 | + <!-- Favicon --> |
| 7 | + <link rel="apple-touch-icon" sizes="76x76" href="../assets/favicon/apple-touch-icon.png"> |
| 8 | + <link rel="icon" type="image/png" sizes="32x32" href="../assets/favicon/favicon-32x32.png"> |
| 9 | + <link rel="icon" type="image/png" sizes="16x16" href="../assets/favicon/favicon-16x16.png"> |
| 10 | + <link rel="manifest" href="../assets/favicon/site.webmanifest"> |
| 11 | + <link rel="mask-icon" href="../assets/favicon/safari-pinned-tab.svg" color="#5bbad5"> |
| 12 | + <meta name="msapplication-TileColor" content="#da532c"> |
| 13 | + <meta name="theme-color" content="#ffffff"> |
| 14 | + |
| 15 | + <!-- other --> |
| 16 | + <meta charset="utf-8"> |
| 17 | + <meta content="width=device-width, initial-scale=1" data-ssr name="viewport"> |
| 18 | + <link rel="preconnect" href="https://fonts.gstatic.com"> |
| 19 | + <link href="https://fonts.googleapis.com/css2?family=Fira+Code&family=Maven+Pro:wght@400;500;700&family=Playfair+Display:wght@400;600;800&display=swap" rel="stylesheet"> |
| 20 | + <link href="../assets/fontawesome-free-5.15.2-web/css/all.css" rel="stylesheet"> |
| 21 | + <link href="../assets/fontawesome-free-5.15.2-web/css/regular.css" rel="stylesheet"> |
| 22 | + <link href="../assets/fontawesome-free-5.15.2-web/css/brands.css" rel="stylesheet"> |
| 23 | + <link rel="stylesheet" href="../assets/css/main.css"> |
| 24 | + <link rel="alternate" type="application/rss+xml" href="https://feeds.buzzsprout.com/1817535.rss"> |
| 25 | + <script src="../assets/js/main.js" defer></script> |
| 26 | + <!-- from https://stackoverflow.com/questions/33986976/how-can-i-remove-a-buggy-service-worker-or-implement-a-kill-switch/62154131#62154131 |
| 27 | + attempt to fix: https://github.com/haskellfoundation/haskellfoundation.github.io/issues/70 |
| 28 | + --> |
| 29 | + <script> |
| 30 | + if (navigator && navigator.serviceWorker && navigator.serviceWorker.getRegistration) { |
| 31 | + navigator.serviceWorker.getRegistration('/').then(function(registration) { |
| 32 | + if (registration) { |
| 33 | + registration.update(); |
| 34 | + registration.unregister(); |
| 35 | + } |
| 36 | + }); |
| 37 | + } |
| 38 | + </script> |
| 39 | + |
| 40 | + <!-- metadata --> |
| 41 | + <title>Partnerships</title> |
| 42 | + <meta property="og:title" content="Partnerships"> |
| 43 | + |
| 44 | + |
| 45 | +</head> |
| 46 | + |
| 47 | +<body class="relative"> |
| 48 | + |
| 49 | + <!-- This is the mobile fly-out menu - outside document flow. --> |
| 50 | + <div id="nav-backdrop" class="fixed z-10 inset-0 hidden"></div> |
| 51 | + |
| 52 | +<div id="mobile-nav" class="fixed z-20 top-0 right-0 w-full sm:w-1/2 max-h-full overflow-auto hidden rounded-b shadow-lg bg-white px-4"> |
| 53 | + |
| 54 | + <div class="pt-6 flex justify-between"> |
| 55 | + |
| 56 | + <div> |
| 57 | + <img src="../assets/images/logos/hf-logo-100-alpha.png" width="68" height="52" alt="Logo of the Haskell Foundation" /> |
| 58 | + <div class="text-sm mt-2 text-gray-500">The Haskell Foundation</div> |
| 59 | + </div> |
| 60 | + |
| 61 | + <div class> |
| 62 | + <button id="mobile-nav-close" type="button" class="inline-flex items-center justify-center p-2 rounded text-purple-800 shadow-lg focus:outline-none"> |
| 63 | + <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
| 64 | + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path> |
| 65 | + </svg> |
| 66 | + </button> |
| 67 | + </div> |
| 68 | + |
| 69 | + </div> |
| 70 | + |
| 71 | + <div class="mt-6"> |
| 72 | + <a href="../" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Home</a> |
| 73 | + |
| 74 | + <div class="block py-3 border-t border-gray-320 text-lg font-medium text-gray-500">About</div> |
| 75 | + <a href="../who-we-are" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Current Board</a> |
| 76 | + <a href="../who-we-are/past-boards" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Past Boards</a> |
| 77 | + <a href="../contact" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Contact</a> |
| 78 | + <a href="../vision" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Vision</a> |
| 79 | + <a href="../careers" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Careers</a> |
| 80 | + |
| 81 | + <a href="../podcast" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Podcast</a> |
| 82 | + |
| 83 | + <a href="../projects" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Projects</a> |
| 84 | + |
| 85 | + <a href="../donations" class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Sponsorship</a> |
| 86 | + |
| 87 | + <div class="block py-3 border-t border-gray-320 text-lg font-medium text-gray-500">Affiliates</div> |
| 88 | + <a href="../affiliates" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Affiliates</a> |
| 89 | + <a href="../affiliates/about" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">About Affiliating</a> |
| 90 | + |
| 91 | + <div class="block py-3 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium text-gray-500">News and Info</div> |
| 92 | + <a href="../news" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">News</a> |
| 93 | + <a href="https://haskell-foundation.medium.com/" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Blog</a> |
| 94 | + <a href="../news/press" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Press</a> |
| 95 | + <a href="../resources" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">Resources</a> |
| 96 | + <a href="../faq" class="block py-3 pl-6 border-t border-gray-320 hover:bg-gray-100 text-lg font-medium">FAQ</a> |
| 97 | + |
| 98 | + </div> |
| 99 | + |
| 100 | +</div> |
| 101 | + |
| 102 | + |
| 103 | + <!-- Document flow begins here --> |
| 104 | + <div class="min-h-screen flex flex-col"> |
| 105 | + <div> |
| 106 | + <nav class="max-w-screen-xl mx-auto px-4 pt-6 sm:pt-12 sm:px-6 flex items-center justify-between justify-self-stretch"> |
| 107 | + |
| 108 | + <div> |
| 109 | + <a href="../"> |
| 110 | + <img src="../assets/images/logos/hf-logo-100-alpha.png" alt="The Haskell Foundation homepage" /> |
| 111 | + <div class="text-sm mt-2 text-gray-500"></div> |
| 112 | + </a> |
| 113 | + </div> |
| 114 | + |
| 115 | + <nav class="hidden lg:block"> |
| 116 | + <ul class="flex space-x-8 xl:space-x-12"> |
| 117 | + |
| 118 | + |
| 119 | + <li class="relative"> |
| 120 | + <a href="../who-we-are" id="who-we-are-nav-item">About</a> |
| 121 | + |
| 122 | + <div class="pt-2 absolute top-full w-44 bg-white shadow-md z-10 hidden" id="who-we-are-nav-item-menu"> |
| 123 | + |
| 124 | + <a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../who-we-are"> |
| 125 | + Current Board |
| 126 | + </a> |
| 127 | + |
| 128 | + <a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../who-we-are/past-boards"> |
| 129 | + Past Boards |
| 130 | + </a> |
| 131 | + |
| 132 | + <a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../contact">Contact</a> |
| 133 | + |
| 134 | + |
| 135 | + <a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../vision">Vision</a> |
| 136 | + <a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../careers">Careers</a> |
| 137 | + </div> |
| 138 | + |
| 139 | + </li> |
| 140 | + |
| 141 | + <li class="relative"> |
| 142 | + <a href="../podcast">Podcast</a> |
| 143 | + </li> |
| 144 | + |
| 145 | + <li class="relative"> |
| 146 | + <a href="../projects">Projects</a> |
| 147 | + |
| 148 | + </li> |
| 149 | + |
| 150 | + <li class="relative"> |
| 151 | + <a href="../donations">Sponsorship</a> |
| 152 | + |
| 153 | + </li> |
| 154 | + |
| 155 | + <li class="relative"> |
| 156 | + <a href="../affiliates" id="affiliates-nav-item">Affiliates</a> |
| 157 | + |
| 158 | + <div class="pt-2 absolute top-full w-44 bg-white shadow-md z-10 hidden" id="affiliates-nav-item-menu"> |
| 159 | + |
| 160 | + <a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../affiliates"> |
| 161 | + Affiliates |
| 162 | + </a> |
| 163 | + |
| 164 | + <a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../affiliates/about"> |
| 165 | + About Affiliating |
| 166 | + </a> |
| 167 | + |
| 168 | + </div> |
| 169 | + |
| 170 | + </li> |
| 171 | + |
| 172 | + <li class="relative"> |
| 173 | + <a href="../news" id="news-nav-item">News and Info</a> |
| 174 | + |
| 175 | + <div class="pt-2 absolute top-full w-44 bg-white shadow-md z-10 hidden" id="news-nav-item-menu"> |
| 176 | + |
| 177 | + <a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../news"> |
| 178 | + News |
| 179 | + </a> |
| 180 | + |
| 181 | + <a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="https://haskell-foundation.medium.com/"> |
| 182 | + Blog |
| 183 | + </a> |
| 184 | + |
| 185 | + <a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../news/press"> |
| 186 | + Press |
| 187 | + </a> |
| 188 | + |
| 189 | + <a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../resources">Resources</a> |
| 190 | + |
| 191 | + <a class="block p-4 border-t-2 hover:bg-gray-50 cursor-pointer" href="../faq">FAQ</a> |
| 192 | + </div> |
| 193 | + |
| 194 | + </li> |
| 195 | + |
| 196 | + |
| 197 | + <li class="relative"> |
| 198 | + <a class="dbox-donation-page-button" href="https://donorbox.org/donation-button-52?" style="background: rgb(94, 80, 134); color: rgb(255, 255, 255); text-decoration: none; font-family: Verdana, sans-serif; display: flex; gap: 8px; width: fit-content; font-size: 16px; border-radius: 5px; line-height: 24px; padding: 8px 24px;"><img src="https://donorbox.org/images/white_logo.svg">Donate</a> |
| 199 | + </li> |
| 200 | + </ul> |
| 201 | + </nav> |
| 202 | + |
| 203 | + <div class="absolute right-0 lg:hidden self-start"> |
| 204 | + <button id="mobile-nav-open" type="button" class="mr-4 flex items-center justify-center p-2 rounded text-purple-800 shadow-lg focus:outline-none" aria-label="Main menu" aria-haspopup="true"> |
| 205 | + <svg class="h-6 w-6" stroke="currentColor" fill="none" viewBox="0 0 24 24"> |
| 206 | + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path> |
| 207 | + </svg> |
| 208 | + </button> |
| 209 | + </div> |
| 210 | + |
| 211 | +</nav> |
| 212 | + |
| 213 | + </div> |
| 214 | + |
| 215 | + <div class="flex-grow"> |
| 216 | + <div class="max-w-screen-xl mx-auto py-16 md:py-24"> |
| 217 | + <div class="sm:px-6 lg:px-16"> |
| 218 | + <div class="relative"> |
| 219 | + <div class="absolute top-0 left-0 border-t border-l border-purple-50 h-10 md:h-20 w-10 md:w-20"> |
| 220 | + <div class="absolute top-1 md:top-2 left-1 md:left-2 border-t border-l border-purple-100 h-10 md:h-20 w-10 md:w-20"> |
| 221 | + <div class="absolute top-1 md:top-2 left-1 md:left-2 border-t border-l border-purple-200 h-10 md:h-20 w-10 md:w-20"> |
| 222 | + <div class="absolute top-1 md:top-2 left-1 md:left-2 border-t border-l border-purple-300 h-10 md:h-20 w-10 md:w-20"> |
| 223 | + <div class="absolute top-1 md:top-2 left-1 md:left-2 border-t border-l border-purple-400 h-10 md:h-20 w-10 md:w-20"> |
| 224 | + <div class="absolute top-1 md:top-2 left-1 md:left-2 border-t border-l border-purple-500 h-10 md:h-20 w-10 md:w-20"></div> |
| 225 | + </div> |
| 226 | + </div> |
| 227 | + </div> |
| 228 | + </div> |
| 229 | + </div> |
| 230 | + <div class="absolute top-0 right-0 border-t border-r border-purple-50 h-10 md:h-20 w-10 md:w-20"> |
| 231 | + <div class="absolute top-1 md:top-2 right-1 md:right-2 border-t border-r border-purple-100 h-10 md:h-20 w-10 md:w-20"> |
| 232 | + <div class="absolute top-1 md:top-2 right-1 md:right-2 border-t border-r border-purple-200 h-10 md:h-20 w-10 md:w-20"> |
| 233 | + <div class="absolute top-1 md:top-2 right-1 md:right-2 border-t border-r border-purple-300 h-10 md:h-20 w-10 md:w-20"> |
| 234 | + <div class="absolute top-1 md:top-2 right-1 md:right-2 border-t border-r border-purple-400 h-10 md:h-20 w-10 md:w-20"> |
| 235 | + <div class="absolute top-1 md:top-2 right-1 md:right-2 border-t border-r border-purple-500 h-10 md:h-20 w-10 md:w-20"></div> |
| 236 | + </div> |
| 237 | + </div> |
| 238 | + </div> |
| 239 | + </div> |
| 240 | + </div> |
| 241 | + </div> |
| 242 | +</div> |
| 243 | + |
| 244 | + <div class="text-center pt-12 md:pt-20 px-12 sm:px-16 md:px-24 lg:px-36 "> |
| 245 | + <h1 class="text-2xl-5xl">Partnerships</h1> |
| 246 | + </div> |
| 247 | + |
| 248 | +</div> |
| 249 | + |
| 250 | + </div> |
| 251 | + |
| 252 | + <div class="max-w-screen-xl mx-auto text-center sm:px-12 md:px-12 lg:px-16 mt-32"> |
| 253 | + <div class="font-bold">SPONSORS</div> |
| 254 | + |
| 255 | + <div class="mt-16"> |
| 256 | + <div class="font-bold">Gold</div> |
| 257 | + </div> |
| 258 | + <div class="flex flex-wrap items-center justify-center"> |
| 259 | + |
| 260 | + <a href="https://iohk.io/" target="_blank" class="block w-48 m-4"><img alt="IOHK" src="../assets/images/sponsors/iohk/iohk-683.png" srcset="../assets/images/sponsors/iohk/iohk-200.png 200w, /assets/images/sponsors/iohk/iohk-400.png 400w, /assets/images/sponsors/iohk/iohk-683.png 683w"></a> |
| 261 | + |
| 262 | + <a href="https://juspay.in" target="_blank" class="block w-48 m-4"><img alt="Juspay" src="../assets/images/sponsors/juspay/juspay_logo.png"></a> |
| 263 | + |
| 264 | + <a href="https://mercury.com/" target="_blank" class="block w-48 m-4"><img alt="Mercury" src="../assets/images/sponsors/mercury/mercury.png"></a> |
| 265 | + |
| 266 | + </div> |
| 267 | + |
| 268 | + <div class="mt-16"> |
| 269 | + <div class="font-bold">Silver</div> |
| 270 | + </div> |
| 271 | + <div class="flex flex-wrap items-center justify-center"> |
| 272 | + |
| 273 | + <a href="https://www.sc.com/en/" target="_blank" class="block w-36 m-4"><img alt="Standard Chartered" src="../assets/images/sponsors/standard-chartered/scb-logo.png"></a> |
| 274 | + |
| 275 | + <a href="https://tweag.io/" target="_blank" class="block w-36 m-4"><img alt="Tweag" src="../assets/images/sponsors/tweag/tweag-683.png" srcset="../assets/images/sponsors/tweag/tweag-200.png 200w, /assets/images/sponsors/tweag/tweag-400.png 400w, /assets/images/sponsors/tweag/tweag-683.png 683w"></a> |
| 276 | + |
| 277 | + <a href="https://well-typed.com/" target="_blank" class="block w-36 m-4"><img alt="Well-Typed" src="../assets/images/sponsors/well-typed/well-typed-683.png" srcset="../assets/images/sponsors/well-typed/well-typed-200.png 200w, /assets/images/sponsors/well-typed/well-typed-400.png 400w, /assets/images/sponsors/well-typed/well-typed-683.png 683w"></a> |
| 278 | + |
| 279 | + </div> |
| 280 | + |
| 281 | + <div class="mt-16"> |
| 282 | + <div class="font-bold">Bronze</div> |
| 283 | + </div> |
| 284 | + <div class="flex flex-wrap items-center justify-center"> |
| 285 | + |
| 286 | + <a href="https://www.channable.com/" target="_blank" class="block w-24 m-4"><img alt="Channable" src="../assets/images/sponsors/channable/channable-683.png" srcset="../assets/images/sponsors/channable/channable-200.png 200w, /assets/images/sponsors/channable/channable-400.png 400w, /assets/images/sponsors/channable/channable-683.png 683w"></a> |
| 287 | + |
| 288 | + <a href="https://www.digitalocean.com" target="_blank" class="block w-24 m-4"><img alt="DigitalOcean" src="../assets/images/sponsors/digital-ocean/DO-logo-683.png" srcset="../assets/images/sponsors/digital-ocean/DO-200.png 200w, /assets/images/sponsors/digital-ocean/DO-400.png 400w, /assets/images/sponsors/digital-ocean/DO-logo-683.png 683w"></a> |
| 289 | + |
| 290 | + <a href="https://opensource.google/" target="_blank" class="block w-24 m-4"><img alt="Google" src="../assets/images/sponsors/google/google-683.png" srcset="../assets/images/sponsors/google/google-200.png 200w, /assets/images/sponsors/google/google-400.png 400w, /assets/images/sponsors/google/google-683.png 683w"></a> |
| 291 | + |
| 292 | + <a href="https://qbaylogic.com/" target="_blank" class="block w-24 m-4"><img alt="QBayLogic" src="../assets/images/sponsors/qbaylogic/qbaylogic-683.png" srcset="../assets/images/sponsors/qbaylogic/qbaylogic-200.png 200w, /assets/images/sponsors/qbaylogic/qbaylogic-400.png 400w, /assets/images/sponsors/qbaylogic/qbaylogic-683.png 683w"></a> |
| 293 | + |
| 294 | + <a href="https://tripshot.com/" target="_blank" class="block w-24 m-4"><img alt="TripShot" src="../assets/images/sponsors/tripshot/Tripshot_Logo_RGB.png"></a> |
| 295 | + |
| 296 | + </div> |
| 297 | +</div> |
| 298 | + |
| 299 | +<div class="mt-20 bg-gray-800 w-full py-20"> |
| 300 | + <div class="max-w-screen-xl mx-auto text-gray-300 text-lg px-6 lg:px-16"> |
| 301 | + |
| 302 | + <div class="flex flex-col space-y-8 text-center lg:flex-row lg:space-y-0"> |
| 303 | + <div class="lg:flex space-y-4 lg:gap-2 lg:flex-grow lg:space-y-0"> |
| 304 | + <div class="font-medium mt-1">To learn more about the Haskell Foundation </div> |
| 305 | + <div class="ml-2"> |
| 306 | + <a href="../contact" class="arrow-link light">>> contact us</a> |
| 307 | + </div> |
| 308 | + </div> |
| 309 | + |
| 310 | + <div class="flex space-x-4 w-44"> |
| 311 | + <a href="https://twitter.com/haskellfound" target="_blank" class="text-4xl block"><span class="fab fa-twitter"></span></a> |
| 312 | + <a href="https://www.linkedin.com/company/haskell-foundation-inc" target="_blank" class="text-4xl block"><span class="fab fa-linkedin-in"></span></a> |
| 313 | + <a href="https://discourse.haskell.org/c/haskell-foundation/11" target="_blank" class="text-4xl block"><span class="fab fa-discourse"></span></a> |
| 314 | + <a rel="me" href="https://mastodon.social/@haskell_foundation" target="_blank" class="text-4xl block"><span class="fab fa-mastodon"></span></a> |
| 315 | + <a href="https://www.youtube.com/@HaskellFoundation" target="_blank" class="text-4xl block"><span class="fab fa-youtube"></span></a> |
| 316 | + <a href="https://github.com/haskellfoundation" target="_blank" class="text-4xl block"><span class="fab fa-github"></span></a> |
| 317 | + </div> |
| 318 | + </div> |
| 319 | + |
| 320 | + <div class="flex flex-row"> |
| 321 | + <div class="mt-16 flex flex-col text-center flex-grow lg:flex-row lg:space-x-8 lg:space-y-0"> |
| 322 | + <img src="../assets/images/logos/hf-logo-100-alpha.png" class="h-8" alt="Logo of the Haskell Foundation" /> |
| 323 | + <div class="font-medium">2024 © Haskell Foundation, <a href="https://github.com/haskellfoundation/haskellfoundation.github.io">submit website bug reports and fixes on GitHub</a></div> |
| 324 | + </div> |
| 325 | + |
| 326 | + <div class="text-sm mt-6 flex ml-8 flex-col justify-items-start text-left"> |
| 327 | + <div>Haskell Foundation, Inc.</div> |
| 328 | + <div>2093 Philadelphia Pike #8119</div> |
| 329 | + <div>Claymont, DE 19703</div> |
| 330 | + <div>USA</div> |
| 331 | + </div> |
| 332 | + </div> |
| 333 | + |
| 334 | + </div> |
| 335 | +</div> |
| 336 | + |
| 337 | + </div> |
| 338 | + |
| 339 | +</body> |
| 340 | + |
| 341 | +</html> |
0 commit comments