From 35107ad2c57b54c5181f7529ab270af877555ada Mon Sep 17 00:00:00 2001 From: Dustin Loring Date: Sun, 1 Dec 2024 07:30:17 -0500 Subject: [PATCH] Update ExamplePrompts.tsx --- app/components/chat/ExamplePrompts.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/chat/ExamplePrompts.tsx b/app/components/chat/ExamplePrompts.tsx index 60b7643..2274b0e 100644 --- a/app/components/chat/ExamplePrompts.tsx +++ b/app/components/chat/ExamplePrompts.tsx @@ -5,7 +5,7 @@ const EXAMPLE_PROMPTS = [ { text: 'Build a simple blog using Astro' }, { text: 'Create a cookie consent form using Material UI' }, { text: 'Make a space invaders game' }, - { text: 'How do I center a div?' }, + { text: 'Make a Tic Tac Toe game in html, css and js only' }, ]; export function ExamplePrompts(sendMessage?: { (event: React.UIEvent, messageInput?: string): void | undefined }) {