From 8d6eb094544d175f584a1d9843ee6ff331181563 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Thu, 19 Dec 2024 17:21:07 +0530 Subject: [PATCH] chore: update suggested actions (#640) --- components/suggested-actions.tsx | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/components/suggested-actions.tsx b/components/suggested-actions.tsx index 15e9e9a..6e07b43 100644 --- a/components/suggested-actions.tsx +++ b/components/suggested-actions.tsx @@ -16,15 +16,25 @@ interface SuggestedActionsProps { function PureSuggestedActions({ chatId, append }: SuggestedActionsProps) { const suggestedActions = [ { - title: 'What is the weather', - label: 'in San Francisco?', - action: 'What is the weather in San Francisco?', + title: 'What are the advantages', + label: 'of using Next.js?', + action: 'What are the advantages of using Next.js?', }, { title: 'Write code that', label: `demonstrates djikstra's algorithm!`, action: `Write code that demonstrates djikstra's algorithm!`, }, + { + title: 'Help me write an essay', + label: `about silicon valley!`, + action: `Help me write an essay about silicon valley!`, + }, + { + title: 'What is the weather', + label: 'in San Francisco?', + action: 'What is the weather in San Francisco?', + }, ]; return (