added presentation card and changed chat hello wording

This commit is contained in:
Arjun 2026-02-05 16:57:40 +05:30
parent c447a42d07
commit 89e5a7f8bc
2 changed files with 9 additions and 8 deletions

View file

@ -1945,13 +1945,8 @@ function App() {
<ConversationContent className={conversationContentClassName}>
{!hasConversation ? (
<ConversationEmptyState className="h-auto">
<div className="text-4xl font-semibold tracking-tight text-foreground/80 sm:text-5xl md:text-6xl">
Rowboat
</div>
<div className="mt-3 text-sm text-muted-foreground flex items-center gap-1">
<kbd className="px-1.5 py-0.5 text-xs font-medium bg-muted rounded border border-border"></kbd>
<kbd className="px-1.5 py-0.5 text-xs font-medium bg-muted rounded border border-border">L</kbd>
<span className="ml-1">to open chat from anywhere</span>
<div className="text-2xl font-semibold tracking-tight text-foreground/80 sm:text-3xl md:text-4xl">
What are we working on?
</div>
</ConversationEmptyState>
) : (

View file

@ -1,4 +1,4 @@
import { Mail, Calendar, FolderOpen, FileText } from 'lucide-react'
import { Mail, Calendar, FolderOpen, FileText, Presentation } from 'lucide-react'
import { cn } from '@/lib/utils'
export interface Suggestion {
@ -33,6 +33,12 @@ const defaultSuggestions: Suggestion[] = [
prompt: 'Help me organize [folder or files]',
icon: <FolderOpen className="h-4 w-4" />,
},
{
id: 'create-presentation',
label: 'Create a presentation',
prompt: 'Create a pdf presentation on [topic]',
icon: <Presentation className="h-4 w-4" />,
},
]
interface SuggestionsProps {