mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2026-07-13 21:52:53 +02:00
25 lines
553 B
TypeScript
25 lines
553 B
TypeScript
export type Sponsor = {
|
|
name: string;
|
|
url: string;
|
|
logo: string;
|
|
description: string;
|
|
invertOnDark?: boolean;
|
|
};
|
|
|
|
export const SPONSORS: Sponsor[] = [
|
|
{
|
|
name: "Fal.ai",
|
|
url: "https://fal.ai?utm_source=opencut",
|
|
logo: "/logos/others/fal.svg",
|
|
description: "Generative image, video, and audio models all in one place.",
|
|
invertOnDark: true,
|
|
},
|
|
{
|
|
name: "Vercel",
|
|
url: "https://vercel.com?utm_source=opencut",
|
|
logo: "/logos/others/vercel.svg",
|
|
description: "Platform where we deploy and host OpenCut.",
|
|
invertOnDark: true,
|
|
},
|
|
];
|