diff --git a/src/components/features/ToolCard.tsx b/src/components/features/ToolCard.tsx index 61d6f987..ae3aac82 100644 --- a/src/components/features/ToolCard.tsx +++ b/src/components/features/ToolCard.tsx @@ -15,20 +15,20 @@ export function ToolCard({ name, description, category, command }: ToolCardProps whileInView={{ opacity: 1, y: 0 }} whileHover={{ scale: 1.05, y: -5 }} transition={{ duration: 0.3 }} - className="bg-gradient-to-r from-cornflower-blue/10 to-white p-6 rounded-lg shadow-lg border border-gray-100 transform hover:shadow-2xl transition-all" + className="bg-white p-6 rounded-lg shadow-xl border border-gray-100 transform hover:shadow-2xl transition-all" >
-
- +
+

{name}

- +

{description}

- -
+ +
{category} - {command} + {command}
);