Skip to content

conf: add new sponors #1483

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/assets/css/_css/brand.less
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@
.zoom-platinum {
transition: transform .2s; /* Animation */
width: 300px;
height: 153px;
max-height: 153px;
cursor: pointer;
}
.zoom-platinum:hover {
Expand Down
30 changes: 21 additions & 9 deletions src/components/Conf/Sponsors/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import { ReactComponent as Solo } from "../../../../static/img/conf/Sponsors/Sol
import { ReactComponent as Hasura } from "../../../../static/img/conf/Sponsors/Hasura.svg"
import { ReactComponent as TheGraph } from "../../../../static/img/conf/Sponsors/TheGraph.svg"
import { ReactComponent as TheGuild } from "../../../../static/img/conf/Sponsors/TheGuild.svg"
import { ReactComponent as Hygraph } from "../../../../static/img/conf/Sponsors/Hygraph.svg"
import { ReactComponent as StepZen } from "../../../../static/img/conf/Sponsors/StepZen.svg"

interface Image {
iconPath: string
Expand Down Expand Up @@ -47,6 +49,11 @@ const sponsorPlatinum: Image[] = [
name: "Solo.io",
link: "https://www.solo.io/",
},
{
iconPath: Hygraph,
name: "Hygraph",
link: "https://hygraph.com/",
},
]

const sponsorGold: Image[] = [
Expand All @@ -55,6 +62,11 @@ const sponsorGold: Image[] = [
name: "The Graph",
link: "https://thegraph.com/",
},
{
iconPath: StepZen,
name: "StepZen",
link: "https://stepzen.com/",
},
]

const sponsorSilver: Image[] = [
Expand All @@ -70,7 +82,6 @@ const workshopDaySponsors: Image[] = [
iconPath: TheGuild,
name: "The Guild",
link: "https://the-guild.dev/",
workshopSponsor: true,
},
]

Expand Down Expand Up @@ -98,13 +109,13 @@ const SponsersConf = () => {
<h3 className="text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8">
PLATINUM
</h3>
<div className="flex justify-center items-start flex-wrap gap-[20px]">
<div className="flex justify-center items-center flex-wrap gap-[20px]">
{sponsorPlatinum
.sort((a, b) => alphabetSort(a, b))
.map((sponsor, i) => (
<a
key={i}
className="zoom-platinum flex flex-col items-center text-center w-full h-full"
className="zoom-platinum self-center flex flex-col text-center w-full"
href={sponsor.link}
target="_blank"
>
Expand All @@ -116,7 +127,7 @@ const SponsersConf = () => {
<h3 className="text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8">
GOLD
</h3>
<div className="flex justify-center items-start flex-wrap gap-[20px]">
<div className="flex justify-center items-start flex-wrap gap-[40px]">
{sponsorGold
.sort((a, b) => alphabetSort(a, b))
.map((sponsor, i) => (
Expand All @@ -134,7 +145,7 @@ const SponsersConf = () => {
<h3 className="text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8">
SILVER
</h3>
<div className="flex justify-center items-start flex-wrap gap-[20px]">
<div className="flex justify-center items-start flex-wrap gap-[40px]">
{sponsorSilver
.sort((a, b) => alphabetSort(a, b))
.map((sponsor, i) => (
Expand All @@ -148,14 +159,15 @@ const SponsersConf = () => {
</a>
))}
</div>
<h1 className="text-center text-4xl text-[#171E26] font-bold my-8 pt-10">

<h3 className="text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8">
Workshop Day Sponsor
</h1>
<div className="flex justify-center items-center flex-wrap gap-[40px]">
</h3>
<div className="flex justify-center items-center flex-wrap gap-[40px] h-[70%]">
{workshopDaySponsors.map((sponsor, i) => (
<a
key={i}
className="zoom-diamond flex flex-col items-center text-center w-full h-full"
className="zoom-platinum flex flex-col items-center text-center"
href={sponsor.link}
target="_blank"
>
Expand Down
32 changes: 32 additions & 0 deletions static/img/conf/Sponsors/Hygraph.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading