"use client" import { cn } from "@/lib/utils" import { LucideIcon } from "lucide-react" interface InfoCardProps { title: string description: string icon: LucideIcon className?: string index?: number } export function InfoCard({ title, description, icon: Icon, className }: InfoCardProps) { return (
{/* Efecto de gradiente en hover */}
{/* Contenido */}
{/* Icono con animación */}
{/* Título con animación de línea */}

{title}

{/* Descripción */}

{description}

{/* Línea decorativa inferior */}
{/* Efecto de brillo en hover */}
) }