import { SparklesIcon } from "@heroicons/react/20/solid"; import { Paragraph } from "~/components/primitives/Paragraph"; // Static for now; later these can be page-aware (per currentPage) or server-driven. const SUGGESTED_PROMPTS = [ "What can you help me with?", "How do retries work in Trigger.dev?", "Where do I set environment variables?", "Explain what this page shows.", ]; export function DashboardAgentSuggestedPrompts({ onSelect, }: { onSelect: (prompt: string) => void; }) { return (