mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 18:00:20 -04:00
58 lines
1.3 KiB
TypeScript
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
|