'use client'; import { BookOpen, Sparkles } from 'lucide-react'; interface EmptyHistoryStateProps { onStartVent?: () => void; } /** * EmptyHistoryState Component * * Story 3.1: Encouraging empty state for new users * * Shown when user has no completed drafts yet. * Displays: * - Encouraging message * - Calming illustration (using icons) * - CTA to start first vent */ export function EmptyHistoryState({ onStartVent }: EmptyHistoryStateProps) { return (
{/* Illustration */}
{/* Message */}

Your journey starts here

Every venting session becomes a learning moment. Start your first session to see your growth unfold.

{/* CTA Button */}
); }