'use client'; import { motion } from 'framer-motion'; import { LucideIcon } from 'lucide-react'; interface RoleCardProps { icon: LucideIcon; title: string; description: string; features: string[]; color: string; selected?: boolean; onClick?: () => void; } export default function RoleCard({ icon: Icon, title, description, features, color, selected = false, onClick, }: RoleCardProps) { return (

{title}

{description}

{selected && ( )}
); }