"use client"; import { useState } from 'react'; import { ShoppingCart, HeartPulse, Wallet, GraduationCap, Home, Briefcase, ArrowRight, Bot } from 'lucide-react'; const agents = [ { title: "ShopSmart Assistant", category: "Retail & E-commerce", description: "Engages customers, answers FAQs, provides personalized product recommendations, and streamlines the purchase process.", icon: , gradient: "from-pink-500/20 to-purple-500/20" }, { title: "HealthMate Advisor", category: "Healthcare", description: "Offers immediate healthcare information, assists in appointment scheduling, and guides patients through available services.", icon: , gradient: "from-blue-500/20 to-cyan-500/20" }, { title: "FinGuide Bot", category: "Finance & Banking", description: "Provides personalized financial advice, handles customer queries, assists with account management, and schedules consultations.", icon: , gradient: "from-green-500/20 to-emerald-500/20" }, { title: "LearnHub Tutor", category: "Education", description: "Facilitates course enrollment, answers academic queries, recommends learning resources, and tracks student progress.", icon: , gradient: "from-orange-500/20 to-yellow-500/20" }, { title: "HomeFinder Agent", category: "Real Estate", description: "Showcases property listings, schedules viewings, offers virtual tours, and provides real-time support for potential buyers.", icon: , gradient: "from-purple-500/20 to-indigo-500/20" }, { title: "ProConnect Advisor", category: "Professional Services", description: "Streamlines client interactions, manages consultation scheduling, and delivers tailored content to boost engagement.", icon: , gradient: "from-teal-500/20 to-blue-500/20" } ]; export default function SampleAgents() { const [activeAgent, setActiveAgent] = useState(null); return ( See Our AI Agents in Action Our platform makes it easy to create AI agents that engage customers, streamline operations, and drive revenue. Check out some sample agents built with our tools: {agents.map((agent, index) => ( setActiveAgent(index)} onMouseLeave={() => setActiveAgent(null)} > {/* Card Background */} {/* Card Content */} {/* Category Tag */} {agent.category} {/* Icon */} {agent.icon} {/* Title & Description */} {agent.title} {agent.description} {/* Try Agent Button */} Try this agent {/* Decorative Elements */} ))} {/* CTA Button */} Explore More Sample Agents ); }
Our platform makes it easy to create AI agents that engage customers, streamline operations, and drive revenue. Check out some sample agents built with our tools:
{agent.description}