Skip to content

Commit 6b5d3d7

Browse files
committed
add vu and rm sponsors
1 parent e6038a1 commit 6b5d3d7

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

212 KB
Loading
65.1 KB
Loading

src/app/components/sponsorsData.tsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import Image from 'next/image';
22
import cadence from '../../../public/images/sponsors/Cadence-Logo.png'
3+
import pcbway from '../../../public/images/sponsors/PCBWay-Logo.png'
4+
import gene from '../../../public/images/sponsors/Gene-Logo.png'
35

46

57
//Place sponsors here
@@ -17,6 +19,13 @@ export const sponsors = {
1719

1820
],
1921
bronze: [],
22+
VEXU: [
23+
{image: pcbway, name: 'PCBWay'},
24+
{image: gene, name: 'Gene Haas Foundation'}
25+
],
26+
stampede: [
27+
{image: gene, name: 'Gene Haas Foundation'}
28+
]
2029
};
2130

2231

@@ -31,11 +40,13 @@ type SponsorTier = {
3140
gold: Sponsor[];
3241
silver: Sponsor[];
3342
bronze: Sponsor[];
43+
VEXU: Sponsor[];
44+
stampede: Sponsor[];
3445
};
3546

3647
export default function SponsorDisplay() {
3748

38-
const tierOrder: (keyof SponsorTier)[] = ['diamond', 'platinum', 'gold', 'silver', 'bronze'];
49+
const tierOrder: (keyof SponsorTier)[] = ['diamond', 'platinum', 'gold', 'silver', 'bronze', 'VEXU', 'stampede'];
3950

4051
return (
4152
<div className="max-w-7xl mx-auto px-4 py-8">

0 commit comments

Comments
 (0)