Skip to content

conf website: add The Guild as a conference sponsor #1480

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 1 commit into from
Jun 17, 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
4 changes: 2 additions & 2 deletions src/components/Conf/Footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react"
import SocialIcons from "../SocialIcons"
import SponsersConf from "../Sponers"
import SponsorsConf from "../Sponsors"
import PartnersConf from "../Partners"

const links = [
Expand Down Expand Up @@ -28,7 +28,7 @@ const links = [
const FooterConf = () => {
return (
<>
<SponsersConf />
<SponsorsConf />
<PartnersConf />
<footer className="text-gray-600 bg-[#171E26]">
<div className="container px-5 md:py-24 mx-auto flex md:items-start md:flex-row md:flex-nowrap flex-wrap flex-col">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { ReactComponent as Postman } from "../../../../static/img/conf/Sponsors/
import { ReactComponent as Solo } from "../../../../static/img/conf/Sponsors/Solo.svg"
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"

interface Image {
iconPath: string
Expand All @@ -23,6 +24,11 @@ function alphabetSort(a: Image, b: Image) {
}

const sponsorDiamond: Image[] = [
{
iconPath: TheGuild,
name: "The Guild",
link: "https://the-guild.dev/",
},
{
iconPath: Postman,
name: "Postman",
Expand Down Expand Up @@ -59,6 +65,15 @@ const sponsorSilver: Image[] = [
},
]

const workshopDaySponsors: Image[] = [
{
iconPath: TheGuild,
name: "The Guild",
link: "https://the-guild.dev/",
workshopSponsor: true,
},
]

const SponsersConf = () => {
return (
<div id="sponsors" className="bg-white py-10 static">
Expand All @@ -68,21 +83,19 @@ const SponsersConf = () => {
<h3 className="text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8">
DIAMOND
</h3>
<div className="flex justify-center items-start flex-wrap gap-[20px]">
{sponsorDiamond
.sort((a, b) => alphabetSort(a, b))
.map((sponsor, i) => (
<a
key={i}
className="zoom-diamond flex flex-col items-center text-center w-full h-full"
href={sponsor.link}
target="_blank"
>
<sponsor.iconPath />
</a>
))}
<div className="flex justify-center items-center flex-wrap gap-[40px]">
{sponsorDiamond.map((sponsor, i) => (
<a
key={i}
className="zoom-diamond flex flex-col items-center text-center w-full h-full"
href={sponsor.link}
target="_blank"
>
<sponsor.iconPath />
</a>
))}
</div>
<h3 className="text-center text-[--rhodamine] font-bold my-20 underline underline-offset-8">
<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]">
Expand Down Expand Up @@ -118,7 +131,7 @@ const SponsersConf = () => {
))}
</div>

<h3 className="text-center text-[--rhodamine] font-bold my-20 underline underline-offset-8">
<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]">
Expand All @@ -135,6 +148,21 @@ const SponsersConf = () => {
</a>
))}
</div>
<h1 className="text-center text-4xl text-[#171E26] font-bold my-8 pt-10">
Workshop Day Sponsor
</h1>
<div className="flex justify-center items-center flex-wrap gap-[40px]">
{workshopDaySponsors.map((sponsor, i) => (
<a
key={i}
className="zoom-diamond flex flex-col items-center text-center w-full h-full"
href={sponsor.link}
target="_blank"
>
<sponsor.iconPath />
</a>
))}
</div>
</div>
)
}
Expand Down
23 changes: 23 additions & 0 deletions static/img/conf/Sponsors/TheGuild.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.