Skip to content

Commit

Permalink
✨ style: minor changes in ui*
Browse files Browse the repository at this point in the history
  • Loading branch information
eshanized committed Jan 16, 2025
1 parent f97fe74 commit e211ef2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/components/features/ToolCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
>
<div className="flex items-center gap-4 mb-4">
<div className="p-3 bg-cornflower-blue/20 rounded-full">
<Terminal className="h-6 w-6 text-cornflower-blue" />
<div className="p-4 bg-cornflower-blue/20 rounded-full">
<Terminal className="h-7 w-7 text-cornflower-blue" />
</div>
<h3 className="text-2xl font-semibold text-gray-900">{name}</h3>
</div>

<p className="text-gray-600 text-lg mb-4">{description}</p>
<div className="flex items-center justify-between">

<div className="flex items-center justify-between mt-4">
<span className="text-sm font-medium text-cornflower-blue">{category}</span>
<code className="text-sm bg-gray-100 px-3 py-1 rounded">{command}</code>
<code className="text-sm bg-gray-100 px-3 py-1 rounded text-gray-800">{command}</code>
</div>
</motion.div>
);
Expand Down

0 comments on commit e211ef2

Please sign in to comment.