Skip to content

Commit

Permalink
add and rm sponsors
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavvraja committed Dec 12, 2024
1 parent 58d3241 commit 0f09cb6
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 5 deletions.
19 changes: 18 additions & 1 deletion src/components/common/sponsor-section.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
import { SponsorCard } from "./sponsor-card";
import { tedxsjecAssetsPrefix } from "@/lib/utils";
import { bronzeSponsors, goldSponsors, platinumSponsors } from "@/constants";
import {
bronzeSponsors,
goldSponsors,
platinumSponsors,
silverSponsors,
} from "@/constants";

export function SponsorSection() {
return (
Expand Down Expand Up @@ -33,6 +38,18 @@ export function SponsorSection() {
/>
))}
</div>
<h2 className="md:text-4xl text-2xl font-bold text-center mb-8 text-slate-100">
Silver Sponsors
</h2>
<div className="flex flex-wrap gap-6 my-10 justify-center">
{silverSponsors.map((sponsor) => (
<SponsorCard
key={sponsor.name}
name={sponsor.name}
logoUrl={sponsor.logoUrl}
/>
))}
</div>
<h2 className="md:text-4xl text-2xl font-bold text-center mb-8 text-yellow-700">
Bronze Sponsors
</h2>
Expand Down
16 changes: 12 additions & 4 deletions src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,10 @@ export const goldSponsors: Sponsors[] = [
name: "Impelsys",
logoUrl: `${tedxsjecAssetsPrefix}/sponsors/Impelsys2.avif`,
},
{
name: "Sri Sweets",
logoUrl: `${tedxsjecAssetsPrefix}/sponsors/Sri_Sweets-removebg-preview(1).avif`,
},
// {
// name: "Sri Sweets",
// logoUrl: `${tedxsjecAssetsPrefix}/sponsors/Sri_Sweets-removebg-preview(1).avif`,
// },
{
name: "iSKEW Learning",
logoUrl: `${tedxsjecAssetsPrefix}/sponsors/iSKEW Learning.avif`,
Expand All @@ -229,6 +229,10 @@ export const silverSponsors: Sponsors[] = [
name: "Motilal Oswal",
logoUrl: `${tedxsjecAssetsPrefix}/sponsors/Motilal.avif`,
},
{
name: "Planet Education",
logoUrl: `${tedxsjecAssetsPrefix}/sponsors/planet-ed.avif`,
},

{
name: "S L Shet",
Expand All @@ -242,6 +246,10 @@ export const silverSponsors: Sponsors[] = [
name: "JV Global",
logoUrl: `${tedxsjecAssetsPrefix}/sponsors/JV Global.avif`,
},
{
name: "WiZdom Ed",
logoUrl: `${tedxsjecAssetsPrefix}/sponsors/wizdom.avif`,
},
{
name: "CASHCADE",
logoUrl: `${tedxsjecAssetsPrefix}/sponsors/CASHCADE.avif`,
Expand Down

0 comments on commit 0f09cb6

Please sign in to comment.