From 8b72afd3379715b4089cbd06888a0686d274688f Mon Sep 17 00:00:00 2001 From: beerose Date: Wed, 28 Jun 2023 22:42:24 +0200 Subject: [PATCH] conf website: hide workshop day section until it's finalized --- src/components/Conf/Sponsors/index.tsx | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/src/components/Conf/Sponsors/index.tsx b/src/components/Conf/Sponsors/index.tsx index b969a46cb0..3d33c98a3f 100644 --- a/src/components/Conf/Sponsors/index.tsx +++ b/src/components/Conf/Sponsors/index.tsx @@ -65,15 +65,6 @@ const sponsorSilver: Image[] = [ }, ] -const workshopDaySponsors: Image[] = [ - { - iconPath: TheGuild, - name: "The Guild", - link: "https://the-guild.dev/", - workshopSponsor: true, - }, -] - const SponsersConf = () => { return (
@@ -148,21 +139,6 @@ const SponsersConf = () => { ))}
-

- Workshop Day Sponsor -

-
- {workshopDaySponsors.map((sponsor, i) => ( - - - - ))} -
) }