Skip to content

Commit 5edfc37

Browse files
authored
Hide workshop info from program page (#1485)
1 parent 1dfc3a2 commit 5edfc37

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

src/components/Conf/Sponsors/index.tsx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,14 @@ const sponsorSilver: Image[] = [
7777
},
7878
]
7979

80+
const workshopDaySponsors: Image[] = [
81+
{
82+
iconPath: TheGuild,
83+
name: "The Guild",
84+
link: "https://the-guild.dev/",
85+
},
86+
]
87+
8088
const SponsersConf = () => {
8189
return (
8290
<div id="sponsors" className="bg-white py-10 static">
@@ -151,6 +159,22 @@ const SponsersConf = () => {
151159
</a>
152160
))}
153161
</div>
162+
163+
<h3 className="text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8">
164+
Workshop Day Sponsor
165+
</h3>
166+
<div className="flex justify-center items-center flex-wrap gap-[40px] h-[70%]">
167+
{workshopDaySponsors.map((sponsor, i) => (
168+
<a
169+
key={i}
170+
className="zoom-platinum flex flex-col items-center text-center"
171+
href={sponsor.link}
172+
target="_blank"
173+
>
174+
<sponsor.iconPath />
175+
</a>
176+
))}
177+
</div>
154178
</div>
155179
)
156180
}

src/pages/conf/program.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default () => {
3131
type="text/javascript"
3232
src="//graphqlconf23.sched.com/js/embed.js"
3333
></Script>
34-
34+
{/*
3535
<h2>Workshop Day</h2>
3636
<p>
3737
Join us for a GraphQLConf Workshop Day on September 19. Workshops
@@ -46,7 +46,7 @@ export default () => {
4646
<p>Thank you to our Workshop Day sponsor, The Guild.</p>
4747
<div className="w-48">
4848
<TheGuild />
49-
</div>
49+
</div> */}
5050
</section>
5151
</div>
5252
</div>

0 commit comments

Comments
 (0)