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