Skip to content

Commit

Permalink
Sort + flex wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato committed May 11, 2022
1 parent 1ce62f7 commit 7fbfe18
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,7 @@ function Links(props) {
);
}
// NOTE to all: keep this list sorted alphabetically by name.
const RUNTIME_LOGOS = [
{
src: "/static/logos/cloudflare-workers.svg",
Expand All @@ -346,6 +347,7 @@ const RUNTIME_LOGOS = [
*/
];

// NOTE to all: keep this list sorted alphabetically by name.
const PARTNER_LOGOS = [
{
src: "/static/logos/cloudflare.svg",
Expand All @@ -357,18 +359,18 @@ const PARTNER_LOGOS = [
href: "https://deno.com/",
name: "Deno",
},
{
src: "/static/logos/vercel.svg",
href: "https://vercel.com/",
name: "Vercel",
restrict: "horizontal",
},
{
src: "/static/logos/shopify.svg",
href: "https://shopify.dev/",
name: "Shopify",
restrict: "horizontal",
},
{
src: "/static/logos/vercel.svg",
href: "https://vercel.com/",
name: "Vercel",
restrict: "horizontal",
},
/** TODO: Add additional logos here */
];

Expand All @@ -390,7 +392,7 @@ function Logos() {
<p class="mt-16 text-center">
The work of the WinterCG is supported by:
</p>
<ul class="mt-8 flex justify-between sm:justify-evenly items-center h-16">
<ul class="mt-8 flex gap-4 flex-wrap justify-evenly sm:justify-evenly items-center h-16">
{PARTNER_LOGOS.map(({ src, href, name, restrict }) => (
<a href={href}>
<img
Expand Down

0 comments on commit 7fbfe18

Please sign in to comment.