@@ -36,17 +36,6 @@ export function ChatBodyEmpty({
3636 openNew ( { type : "prompts" } ) ;
3737 } , [ openNew ] ) ;
3838
39- const quickActions = [
40- "Make a 1-paragraph summary" ,
41- "Draft a follow-up mail for others" ,
42- "What are the next steps for me" ,
43- ] ;
44-
45- const handleQuickAction = ( action : string ) => {
46- // For now, we just log it
47- console . log ( "Quick action clicked:" , action ) ;
48- } ;
49-
5039 if ( ! isModelConfigured ) {
5140 return (
5241 < div className = "flex justify-start px-3 py-2" >
@@ -93,35 +82,24 @@ export function ChatBodyEmpty({
9382 < p className = "text-sm text-neutral-700 mb-2" >
9483 Hey! I can help you with a lot of cool stuff :)
9584 </ p >
96- < div className = "flex flex-col gap-1 pb-1" >
97- { quickActions . map ( ( action ) => (
98- < button
99- key = { action }
100- onClick = { ( ) => handleQuickAction ( action ) }
101- className = "px-3 py-2 text-sm bg-white hover:bg-neutral-50 text-neutral-700 rounded-lg transition-colors border border-neutral-200 text-left"
102- >
103- { action }
104- </ button >
105- ) ) }
106- </ div >
107- < div className = "flex gap-2 pt-2 border-t border-neutral-200 mt-1" >
85+ < div className = "flex flex-wrap gap-2 pb-1" >
10886 < button
10987 onClick = { handleOpenChatShortcuts }
110- className = "flex items-center gap-1.5 px-2 py-1 text-xs text-neutral-500 hover:text -neutral-700 transition-colors"
88+ className = "flex items-center gap-1.5 px-3 py-1.5 text-xs text-neutral-600 bg-white hover:bg -neutral-50 rounded-full border border-neutral-200 transition-colors"
11189 >
11290 < MessageSquareIcon size = { 12 } />
11391 < span > Shortcuts</ span >
11492 </ button >
11593 < button
11694 onClick = { handleOpenPrompts }
117- className = "flex items-center gap-1.5 px-2 py-1 text-xs text-neutral-500 hover:text -neutral-700 transition-colors"
95+ className = "flex items-center gap-1.5 px-3 py-1.5 text-xs text-neutral-600 bg-white hover:bg -neutral-50 rounded-full border border-neutral-200 transition-colors"
11896 >
11997 < SparklesIcon size = { 12 } />
12098 < span > Prompts</ span >
12199 </ button >
122100 < button
123101 onClick = { handleGoToSettings }
124- className = "flex items-center gap-1.5 px-2 py-1 text-xs text-neutral-500 hover:text -neutral-700 transition-colors"
102+ className = "flex items-center gap-1.5 px-3 py-1.5 text-xs text-neutral-600 bg-white hover:bg -neutral-50 rounded-full border border-neutral-200 transition-colors"
125103 >
126104 < SettingsIcon size = { 12 } />
127105 < span > Settings</ span >
0 commit comments