import { Card, CardContent } from "@/components/ui/card"; import { Heart, Zap, MessageSquare } from "lucide-react"; const features = [ { icon: Heart, title: "Lightning-Fast, Always Available", description: "Experience seamless, uninterrupted conversations with enterprise-grade reliability and instant responses.", // color: "#ef4444", }, { icon: Zap, title: "Powerfully Smart", description: "Engage in meaningful conversations, get help with tasks, or learn something new every day.", // color: "#f59e0b", }, { icon: MessageSquare, title: "Personalized Experience", description: "The more you interact, the more your Elato adapts to your preferences and personality.", // color: "#059669", }, ]; const KeyFeatures = () => { return (

Why You'll Love Elato

{features.map((feature) => (

{feature.title}

{feature.description}

))}
); }; export default KeyFeatures;