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 (