Skip to content
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

Hide workshop info from program page #1485

Merged
merged 1 commit into from
Jun 30, 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
24 changes: 24 additions & 0 deletions src/components/Conf/Sponsors/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,14 @@ const sponsorSilver: Image[] = [
},
]

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

const SponsersConf = () => {
return (
<div id="sponsors" className="bg-white py-10 static">
Expand Down Expand Up @@ -151,6 +159,22 @@ const SponsersConf = () => {
</a>
))}
</div>

<h3 className="text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8">
Workshop Day Sponsor
</h3>
<div className="flex justify-center items-center flex-wrap gap-[40px] h-[70%]">
{workshopDaySponsors.map((sponsor, i) => (
<a
key={i}
className="zoom-platinum flex flex-col items-center text-center"
href={sponsor.link}
target="_blank"
>
<sponsor.iconPath />
</a>
))}
</div>
</div>
)
}
Expand Down
4 changes: 2 additions & 2 deletions src/pages/conf/program.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default () => {
type="text/javascript"
src="//graphqlconf23.sched.com/js/embed.js"
></Script>

{/*
<h2>Workshop Day</h2>
<p>
Join us for a GraphQLConf Workshop Day on September 19. Workshops
Expand All @@ -46,7 +46,7 @@ export default () => {
<p>Thank you to our Workshop Day sponsor, The Guild.</p>
<div className="w-48">
<TheGuild />
</div>
</div> */}
</section>
</div>
</div>
Expand Down