Files
supabase/apps/studio/components/interfaces/Home/Home.constants.ts
2025-09-11 23:41:07 +08:00

92 lines
3.0 KiB
TypeScript

export const EXAMPLE_PROJECTS = [
{
framework: 'Svelte',
title: 'Svelte kanban board',
description: 'A Trello clone using Supabase as the storage system.',
url: 'https://github.com/joshnuss/supabase-kanban',
type: 'app',
},
{
framework: 'nextjs',
title: 'Next.js Realtime chat app',
description: 'Next.js Slack clone app using Supabase realtime subscriptions',
url: 'https://github.com/supabase/supabase/tree/master/examples/slack-clone/nextjs-slack-clone',
type: 'app',
},
{
framework: 'nextjs',
title: 'Next.js Subscription and Auth',
description: 'The all-in-one starter kit for high-performance SaaS applications.',
url: 'https://github.com/nextjs/saas-starter',
type: 'app',
},
{
framework: 'Expo',
title: 'Expo Starter',
description: 'Template bottom tabs with auth flow (Typescript)',
url: 'https://github.com/codingki/react-native-expo-template/tree/master/template-typescript-bottom-tabs-supabase-auth-flow',
type: 'mobile',
},
{
framework: 'NestJS',
title: 'NestJS example',
description: 'NestJS example using Supabase Auth',
url: 'https://github.com/hiro1107/nestjs-supabase-auth',
type: 'app',
},
{
framework: 'React',
title: 'React realtime chat app',
description: 'Example app of real-time chat using supabase realtime api',
url: 'https://github.com/shwosner/realtime-chat-supabase-react',
type: 'app',
},
{
framework: 'nextjs',
title: 'Next.js todo list app',
description: 'Next.js todo list example',
url: 'https://github.com/supabase/supabase/tree/master/examples/todo-list/nextjs-todo-list',
type: 'app',
},
{
framework: 'Svelte',
title: 'Svelte todo list app',
description: 'Sveltejs todo with TailwindCSS and Snowpack',
url: 'https://github.com/supabase/supabase/tree/master/examples/todo-list/sveltejs-todo-list',
type: 'app',
},
{
framework: 'Flutter',
title: 'Flutter chat app',
description: 'A Flutter chat app built with supabase-flutter',
url: 'https://github.com/supabase-community/flutter-chat',
type: 'mobile',
},
{
framework: 'Swift',
title: 'Swift user management app',
description: 'Swift user management app using supabase-swift',
url: 'https://github.com/supabase/supabase-swift/tree/main/Examples/UserManagement',
type: 'mobile',
},
{
framework: 'Swift',
title: 'Swift Slack Clone',
description: 'Swift Slack clone app using supabase-swift',
url: 'https://github.com/supabase/supabase-swift/tree/main/Examples/SlackClone',
type: 'mobile',
},
{
framework: 'Flutter',
title: 'Flutter MFA app',
description: 'A Flutter app demonstrating how to implement MFA',
url: 'https://github.com/supabase/supabase/tree/master/examples/auth/flutter-mfa',
},
{
framework: 'NuxtJS',
title: 'NuxtJS todo list app',
description: 'NuxtJS todo app example',
url: 'https://github.com/nuxt-modules/supabase/tree/main/demo',
},
]