koel/resources/assets/js/sponsors.ts
2022-12-15 23:31:52 +07:00

38 lines
812 B
TypeScript

import renderLogo from '@/../img/sponsors/render.svg'
import keyCdnLogo from '@/../img/sponsors/keycdn.svg'
import whatTheDiffLogo from '@/../img/sponsors/what-the-diff.svg'
type Sponsor = {
description: string
url: string
logo: {
src: string
style?: string
}
}
export default [
{
description: 'Render - Cloud Hosting for Developers',
url: 'https://render.com',
logo: {
src: renderLogo,
style: 'height: 28px'
}
},
{
description: 'KeyCDN - Content delivery made easy',
url: 'https://www.keycdn.com?a=11519',
logo: {
src: keyCdnLogo
}
},
{
description: 'What The Diff - AI powered changelog generation',
url: 'https://whatthediff.ai',
logo: {
src: whatTheDiffLogo,
style: 'height: 20px'
}
}
] as Sponsor[]