mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 08:34:30 +08:00
* add a new component for input * add textArea * some colors * rename * Update page.tsx * move files * Update ChatInput.tsx * Update Header.tsx
16 lines
507 B
TypeScript
16 lines
507 B
TypeScript
const CHAT_EXAMPLES = [
|
|
{ label: 'Twitter clone', prompt: 'Create a twitter clone' },
|
|
{
|
|
label: 'Chat application',
|
|
prompt:
|
|
'Create a chat application that supports sending messages either through channels or directly between users',
|
|
},
|
|
{
|
|
label: 'User management',
|
|
prompt: 'Create a simple user management schema that supports role based access control',
|
|
},
|
|
{ label: 'To do list', prompt: 'Create a simple schema for me to track a to do list' },
|
|
]
|
|
|
|
export { CHAT_EXAMPLES }
|