Skip to content

Commit 0c53c24

Browse files
authored
Merge pull request #18 from WasThatRudy/main
added sponsors
2 parents 439a7ad + 044aa71 commit 0c53c24

1 file changed

Lines changed: 20 additions & 8 deletions

File tree

components/landing/Sponsors.tsx

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,32 @@ type Brand = {
77
name: string;
88
href: string;
99
logo?: string; // remote image URL
10-
tier?: 'Platinum' | 'Gold' | 'Silver' | 'Bronze';
10+
tier?: 'Platinum Sponsor' | 'Gold Sponsor' | 'Silver Sponsor' | 'Bronze Sponsor';
1111
};
1212

1313
const sponsors: Brand[] = [
1414
{
1515
name: 'NVIDIA',
1616
href: 'https://www.nvidia.com/',
17-
tier: 'Platinum',
17+
tier: 'Platinum Sponsor',
1818
logo: 'https://upload.wikimedia.org/wikipedia/sco/2/21/Nvidia_logo.svg',
1919
},
20+
{
21+
name: 'Google',
22+
href: 'https://www.google.com/',
23+
tier: 'Gold Sponsor',
24+
logo: 'https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Google_2015_logo.svg/375px-Google_2015_logo.svg.png',
25+
},
26+
{
27+
name: 'Qualcomm',
28+
href: 'https://www.qualcomm.com/',
29+
tier: 'Silver Sponsor',
30+
logo: 'https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Qualcomm-Logo.svg/500px-Qualcomm-Logo.svg.png',
31+
},
2032
{
2133
name: 'Quadric',
2234
href: 'https://quadric.io/',
23-
tier: 'Bronze',
35+
tier: 'Bronze Sponsor',
2436
logo: 'https://quadric.io/wp-content/uploads/2023/03/Quadric_Logo_FA_72_DPI.png',
2537
},
2638
];
@@ -66,11 +78,11 @@ function ImageOrFallback({ brand }: { brand: Brand }) {
6678
}
6779

6880
export default function SponsorsSection() {
69-
const tiers: Array<'Platinum' | 'Gold' | 'Silver' | 'Bronze'> = [
70-
'Platinum',
71-
'Gold',
72-
'Silver',
73-
'Bronze',
81+
const tiers: Array<'Platinum Sponsor' | 'Gold Sponsor' | 'Silver Sponsor' | 'Bronze Sponsor'> = [
82+
'Platinum Sponsor',
83+
'Gold Sponsor',
84+
'Silver Sponsor',
85+
'Bronze Sponsor',
7486
];
7587

7688
return (

0 commit comments

Comments
 (0)