feat: add sponsors section to homepage with new sponsor data and assets
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
export type Sponsor = {
|
||||
id: string;
|
||||
name: string;
|
||||
job: string;
|
||||
logo: string;
|
||||
websiteUrl?: string;
|
||||
};
|
||||
|
||||
export const SPONSORS: Sponsor[] = [
|
||||
{
|
||||
id: "hostinger",
|
||||
name: "Hostinger",
|
||||
job: "Web Hosting",
|
||||
logo: "/sponsors/hostinger.png",
|
||||
websiteUrl: "https://hostinger.com",
|
||||
},
|
||||
{
|
||||
id: "testsprite",
|
||||
name: "TestSprite",
|
||||
job: "Yazılım Test Otomasyonu",
|
||||
logo: "/sponsors/testsprite.png",
|
||||
websiteUrl: "https://testsprite.com",
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user