import { Cpu, PanelsTopLeft, Terminal, Zap } from "lucide-react"; const FEATURES = [ { title: "Instant Chat UI", description: "Drop in ChatGPT-style UX with theming and sensible defaults.", icon: PanelsTopLeft, }, { title: "State Management", description: "Streaming, interruptions, retries, and multi-turn conversations.", icon: Cpu, }, { title: "High Performance", description: "Optimized rendering and minimal bundle size for responsive streaming.", icon: Zap, }, { title: "Works Everywhere", description: "Vercel AI SDK, LangChain, or any LLM provider. React-based.", icon: Terminal, }, ] as const; export function FeatureHighlights() { return (

Everything you need to ship AI chat

Production-ready components and state management.

{FEATURES.map((feature) => { const Icon = feature.icon; return (
{feature.title}
{feature.description}
); })}
); }