File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import type { Metadata } from "next" ;
22import SponsorCard , { type Sponsor } from "@/components/SponsorCard" ;
3+ import rerunLogo from "@/assets/sponsors/rerun.svg" ;
4+ import startupVillageLogo from "@/assets/sponsors/startup_village.webp" ;
5+ import uvaLogo from "@/assets/sponsors/uva.png" ;
36
47export const metadata : Metadata = {
58 title : "Sponsors — Team whIRLwind" ,
@@ -18,7 +21,7 @@ const sponsorTiers: SponsorTier[] = [
1821 {
1922 name : "Rerun" ,
2023 website : "https://rerun.io" ,
21- logo : "/sponsors/rerun.svg" ,
24+ logo : rerunLogo ,
2225 logoAlt : "Rerun logo" ,
2326 logoWidth : 94 ,
2427 logoHeight : 28 ,
@@ -35,15 +38,15 @@ const sponsorTiers: SponsorTier[] = [
3538 {
3639 name : "StartUp Village" ,
3740 website : "https://startupvillage.nl" ,
38- logo : "/sponsors/startup_village.webp" ,
41+ logo : startupVillageLogo ,
3942 logoAlt : "StartUp Village logo" ,
4043 logoWidth : 480 ,
4144 logoHeight : 242 ,
4245 } ,
4346 {
4447 name : "University of Amsterdam" ,
4548 website : "https://uva.nl" ,
46- logo : "/sponsors/uva.png" ,
49+ logo : uvaLogo ,
4750 logoAlt : "University of Amsterdam logo" ,
4851 logoWidth : 480 ,
4952 logoHeight : 242 ,
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1- import Image from "next/image" ;
1+ import Image , { type ImageProps } from "next/image" ;
22import Link from "next/link" ;
33
44export type Sponsor = {
55 name : string ;
66 website ?: string ;
77 contribution ?: string ;
88 notes ?: string ;
9- logo ?: string ;
9+ logo ?: ImageProps [ "src" ] ;
1010 logoAlt ?: string ;
1111 logoWidth ?: number ;
1212 logoHeight ?: number ;
You can’t perform that action at this time.
0 commit comments