import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Wind, Droplets, Bot, FileText, Zap } from "lucide-react"; import { useLocation } from "wouter"; const quickActions = [ { icon: , label: "Quick AQI", route: "/aryabhata-analyzer", hoverColor: "hover:bg-saffron hover:text-white" }, { icon: , label: "Water Test", route: "/bhagirathi-jalcheck", hoverColor: "hover:bg-deep-green hover:text-white" }, { icon: , label: "Ask Rishi", route: "/rishi-ai", hoverColor: "hover:bg-navy-blue hover:text-white" }, { icon: , label: "Generate Report", route: "/kautilya-report", hoverColor: "hover:bg-warm-orange hover:text-white" } ]; export default function QuickActions() { const [, setLocation] = useLocation(); return ( Quick Actions
{quickActions.map((action, index) => ( ))}
); }