46 lines
996 B
TypeScript
46 lines
996 B
TypeScript
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",
|
||
},
|
||
{
|
||
id: "minimax",
|
||
name: "MiniMax",
|
||
job: "AI Video & Model Platformu",
|
||
logo: "/sponsors/minimax.png",
|
||
websiteUrl: "https://www.minimax.io",
|
||
},
|
||
{
|
||
id: "higgsfield",
|
||
name: "Higgsfield",
|
||
job: "AI Creative Suite",
|
||
logo: "/sponsors/higgsfield.png",
|
||
websiteUrl: "https://higgsfield.ai",
|
||
},
|
||
{
|
||
id: "hosting-dunyam",
|
||
name: "Hosting Dünyam",
|
||
job: "Hosting Sağlayıcısı",
|
||
logo: "/sponsors/hosting-dunyam.png",
|
||
websiteUrl: "https://hostingdunyam.com",
|
||
},
|
||
];
|