Skip to content

Commit

Permalink
Add ByteDance Logo (wintercg#23)
Browse files Browse the repository at this point in the history
Co-authored-by: Luca Casonato <[email protected]>
  • Loading branch information
XadillaX and lucacasonato committed Jun 17, 2022
1 parent 45f4baf commit 1fddb65
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ function Home() {
collaborate on API interoperability. We focus on documenting and
improving interoperability of web platform APIs across runtimes
(especially non-browser ones). This is done through discussions among
runtimes, proposals in specification venues (WHATWG, W3C) for new
web APIs and for changes to current web APIs, and documentation of
existing runtime behaviours.{" "}
runtimes, proposals in specification venues (WHATWG, W3C) for new web
APIs and for changes to current web APIs, and documentation of existing
runtime behaviours.{" "}
<a
href="/faq"
class="text-pink-500 hover:text-pink-700 hover:underline"
Expand Down Expand Up @@ -350,6 +350,13 @@ const RUNTIME_LOGOS = [

// NOTE to all: keep this list sorted alphabetically by name.
const PARTNER_LOGOS = [
{
src: "/static/logos/bytedance.png",
href: "https://bytedance.com/",
name: "ByteDance",
restrict: "horizontal",
licenseExpiration: new Date(2023, 5, 8), // We are only licensed to use the image until 2023-05-09.
},
{
src: "/static/logos/cloudflare.svg",
href: "https://cloudflare.com/",
Expand Down Expand Up @@ -379,7 +386,7 @@ const PARTNER_LOGOS = [
restrict: "horizontal",
},
/** TODO: Add additional logos here */
];
].filter(({ licenseExpiration: le }) => !le || le > new Date());

function Logos() {
return (
Expand All @@ -399,7 +406,7 @@ function Logos() {
<p class="mt-16 text-center">
The work of the WinterCG is supported by:
</p>
<div class="mt-8 flex gap-4 flex-wrap justify-evenly sm:justify-evenly items-center h-16">
<div class="mt-8 flex gap-4 flex-wrap justify-evenly sm:justify-evenly items-center">
{PARTNER_LOGOS.map(({ src, href, name, restrict }) => (
<a href={href}>
<img
Expand Down
Binary file added static/logos/bytedance.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1fddb65

Please sign in to comment.