import { motion } from 'framer-motion'; import { Terminal } from 'lucide-react'; interface ToolCardProps { name: string; description: string; category: string; command: string; } export function ToolCard({ name, description, category, command }: ToolCardProps) { return (

{name}

{description}

{category} {command}
); }