Skip to content

Commit 4b0a8f2

Browse files
authored
Merge branch 'source' into schedule-updates
2 parents 3a6a4fc + a1fa839 commit 4b0a8f2

File tree

5 files changed

+127
-28
lines changed

5 files changed

+127
-28
lines changed

src/assets/css/_css/brand.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@
269269
.zoom-platinum {
270270
transition: transform .2s; /* Animation */
271271
width: 300px;
272-
height: 153px;
272+
max-height: 153px;
273273
cursor: pointer;
274274
}
275275
.zoom-platinum:hover {

src/components/Conf/Sponsors/index.tsx

Lines changed: 16 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ import { ReactComponent as Solo } from "../../../../static/img/conf/Sponsors/Sol
66
import { ReactComponent as Hasura } from "../../../../static/img/conf/Sponsors/Hasura.svg"
77
import { ReactComponent as TheGraph } from "../../../../static/img/conf/Sponsors/TheGraph.svg"
88
import { ReactComponent as TheGuild } from "../../../../static/img/conf/Sponsors/TheGuild.svg"
9+
import { ReactComponent as Hygraph } from "../../../../static/img/conf/Sponsors/Hygraph.svg"
10+
import { ReactComponent as StepZen } from "../../../../static/img/conf/Sponsors/StepZen.svg"
911

1012
interface Image {
1113
iconPath: string
@@ -47,6 +49,11 @@ const sponsorPlatinum: Image[] = [
4749
name: "Solo.io",
4850
link: "https://www.solo.io/",
4951
},
52+
{
53+
iconPath: Hygraph,
54+
name: "Hygraph",
55+
link: "https://hygraph.com/",
56+
},
5057
]
5158

5259
const sponsorGold: Image[] = [
@@ -55,6 +62,11 @@ const sponsorGold: Image[] = [
5562
name: "The Graph",
5663
link: "https://thegraph.com/",
5764
},
65+
{
66+
iconPath: StepZen,
67+
name: "StepZen",
68+
link: "https://stepzen.com/",
69+
},
5870
]
5971

6072
const sponsorSilver: Image[] = [
@@ -65,14 +77,6 @@ const sponsorSilver: Image[] = [
6577
},
6678
]
6779

68-
const workshopDaySponsors: Image[] = [
69-
{
70-
iconPath: TheGuild,
71-
name: "The Guild",
72-
link: "https://the-guild.dev/",
73-
},
74-
]
75-
7680
const SponsersConf = () => {
7781
return (
7882
<div id="sponsors" className="bg-white py-10 static">
@@ -97,13 +101,13 @@ const SponsersConf = () => {
97101
<h3 className="text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8">
98102
PLATINUM
99103
</h3>
100-
<div className="flex justify-center items-start flex-wrap gap-[20px]">
104+
<div className="flex justify-center items-center flex-wrap gap-[20px]">
101105
{sponsorPlatinum
102106
.sort((a, b) => alphabetSort(a, b))
103107
.map((sponsor, i) => (
104108
<a
105109
key={i}
106-
className="zoom-platinum flex flex-col items-center text-center w-full h-full"
110+
className="zoom-platinum self-center flex flex-col text-center w-full"
107111
href={sponsor.link}
108112
target="_blank"
109113
>
@@ -115,7 +119,7 @@ const SponsersConf = () => {
115119
<h3 className="text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8">
116120
GOLD
117121
</h3>
118-
<div className="flex justify-center items-start flex-wrap gap-[20px]">
122+
<div className="flex justify-center items-start flex-wrap gap-[40px]">
119123
{sponsorGold
120124
.sort((a, b) => alphabetSort(a, b))
121125
.map((sponsor, i) => (
@@ -133,7 +137,7 @@ const SponsersConf = () => {
133137
<h3 className="text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8">
134138
SILVER
135139
</h3>
136-
<div className="flex justify-center items-start flex-wrap gap-[20px]">
140+
<div className="flex justify-center items-start flex-wrap gap-[40px]">
137141
{sponsorSilver
138142
.sort((a, b) => alphabetSort(a, b))
139143
.map((sponsor, i) => (
@@ -147,21 +151,6 @@ const SponsersConf = () => {
147151
</a>
148152
))}
149153
</div>
150-
<h1 className="text-center text-4xl text-[#171E26] font-bold my-8 pt-10">
151-
Workshop Day Sponsor
152-
</h1>
153-
<div className="flex justify-center items-center flex-wrap gap-[40px]">
154-
{workshopDaySponsors.map((sponsor, i) => (
155-
<a
156-
key={i}
157-
className="zoom-diamond flex flex-col items-center text-center w-full h-full"
158-
href={sponsor.link}
159-
target="_blank"
160-
>
161-
<sponsor.iconPath />
162-
</a>
163-
))}
164-
</div>
165154
</div>
166155
)
167156
}

src/content/community/Community-Users.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ A number of GraphQL training courses are available.
1919
- [How to GraphQL](https://www.howtographql.com): The Fullstack Tutorial for GraphQL
2020
- [Apollo Odyssey](https://apollographql.com/tutorials/): Interactive courses for building GraphQL applications with Apollo's toolset
2121
- [Yoga GraphQL Server Tutorial](https://the-guild.dev/graphql/yoga-server/tutorial): Open source tutorial for creating modern GraphQL Servers in Node, CF Workers, Deno and others
22+
- [GraphQL Tutorials](https://hasura.io/learn/): Real World Fullstack GraphQL tutorials for developers by Hasura
2223

2324
## Where to ask questions
2425

static/img/conf/Sponsors/Hygraph.svg

Lines changed: 32 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)