"use client"; import { cn } from "@midday/ui/cn"; import { Icons } from "@midday/ui/icons"; import { useState } from "react"; const SHORTCUT_SUGGESTIONS = [ "Show latest transactions", "Show cash burn and top 3 vendor increases", "Show where we're spending the most this month", "Show weekly trends and insights", "Show revenue performance", "Show expense breakdown by category", "Show profit margins", "Show cash runway", "Show cash flow stress test", ]; export function HeaderAssistantInputPreview() { const [isBoltActive, setIsBoltActive] = useState(true); return (
{/* Shortcut Suggestions */}
{SHORTCUT_SUGGESTIONS.map((suggestion, index) => (
{suggestion}
))}
{/* Input Bar */}
{/* Input Field */}
{/* Icons Row */}
); }