diff --git a/app/components/chat/BaseChat.tsx b/app/components/chat/BaseChat.tsx index 3afee2d..193c4a8 100644 --- a/app/components/chat/BaseChat.tsx +++ b/app/components/chat/BaseChat.tsx @@ -38,7 +38,7 @@ interface BaseChatProps { const EXAMPLE_PROMPTS = [ { text: 'Build a todo app in React using Tailwind' }, { text: 'Build a simple blog using Astro' }, - { text: 'Create a cookie consent form using Material UI' }, + { text: 'Make a login form using React' }, { text: 'Make a space invaders game' }, { text: 'How do I center a div?' }, ]; @@ -226,8 +226,8 @@ export const BaseChat = React.forwardRef( {!chatStarted && ( -
-
+
+
{ sendMessage?.(new Event('click') as any, description); @@ -245,23 +245,27 @@ export const BaseChat = React.forwardRef( }} />
-
- {EXAMPLE_PROMPTS.map((examplePrompt, index) => { - return ( - - ); - })} +
+ or start a blank app with your favorite stack +
+
+
+ {EXAMPLE_PROMPTS.map((examplePrompt, index) => { + return ( + + ); + })} +
+
-
)}