'use client'; import SamosaLogo from '@/components/svg/SamosaLogo'; const SUGGESTIONS = [ { icon: '📚', label: 'Summarize a topic', description: 'Get a concise overview of any subject', prompt: 'Summarize the history of samosas in 3 paragraphs.', }, { icon: '✨', label: 'Explain a concept', description: 'Break down complex ideas simply', prompt: 'Explain transformers to a curious beginner.', }, { icon: '💻', label: 'Write some code', description: 'Get help with any programming task', prompt: 'Write a Python function that reverses a linked list.', }, { icon: '😄', label: 'Tell me a joke', description: 'Lighten the mood with some humor', prompt: 'Tell me a joke about chai.', }, ]; export default function EmptyState({ onPick }: { onPick: (prompt: string) => void }) { return (
{/* Small logo */}

How can I help you today?

Ask anything — a doubt, a recipe, a code snippet, or a fresh idea.

{/* Bigger suggestion cards - 2x2 grid */}
{SUGGESTIONS.map((s) => ( ))}
); }