Skip to content
Merged
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: 0 additions & 24 deletions src/components/Conf/Sponsors/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,6 @@ 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 @@ -159,22 +151,6 @@ 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