"use client"; import { MessageCircle, Sparkles, Wand2 } from "lucide-react"; import { useBackendHealth } from "@/hooks/use-backend-health"; import { cn } from "@/lib/utils"; export function BottomToolbar() { const status = useBackendHealth(); const indicatorColor = status === "ok" ? "bg-green-500" : status === "error" ? "bg-red-500" : "bg-gray-300"; return ( ); }