feat: add sponsors section to homepage with new sponsor data and assets

This commit is contained in:
Poyraz Avsever
2026-06-20 12:48:07 +03:00
parent 139c21d27b
commit a22055c4d9
5 changed files with 70 additions and 0 deletions
+24
View File
@@ -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",
},
];