Files
supabase/apps/www/data/DeveloperSignups.ts
2022-04-21 12:04:22 +02:00

58 lines
1.3 KiB
TypeScript

type SignupItem = {
img: string
title: string
}
const data: SignupItem[] = [
{
title: 'Vercel',
img: 'https://tailwindui.com/img/logos/mirage-logo-gray-400.svg',
},
{
title: 'Netlify',
img: 'https://tailwindui.com/img/logos/mirage-logo-gray-400.svg',
},
{
title: 'Vercel',
img: 'https://tailwindui.com/img/logos/mirage-logo-gray-400.svg',
},
{
title: 'Netlify',
img: 'https://tailwindui.com/img/logos/mirage-logo-gray-400.svg',
},
{
title: 'Vercel',
img: 'https://tailwindui.com/img/logos/mirage-logo-gray-400.svg',
},
{
title: 'Netlify',
img: 'https://tailwindui.com/img/logos/mirage-logo-gray-400.svg',
},
{
title: 'Vercel',
img: 'https://tailwindui.com/img/logos/mirage-logo-gray-400.svg',
},
{
title: 'Netlify',
img: 'https://tailwindui.com/img/logos/mirage-logo-gray-400.svg',
},
{
title: 'Vercel',
img: 'https://tailwindui.com/img/logos/mirage-logo-gray-400.svg',
},
{
title: 'Netlify',
img: 'https://tailwindui.com/img/logos/mirage-logo-gray-400.svg',
},
{
title: 'Vercel',
img: 'https://tailwindui.com/img/logos/mirage-logo-gray-400.svg',
},
{
title: 'Netlify',
img: 'https://tailwindui.com/img/logos/mirage-logo-gray-400.svg',
},
]
export default data