Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ const Card: React.FC<Props> = ({ index, image, title, description, link }) => {
key={index}
className="group relative flex h-auto flex-col justify-evenly rounded-lg border border-zinc-200 p-6 shadow-xl"
>
<div className="relative h-fit overflow-hidden rounded-md">
<div className="relative h-fit rounded-md flex justify-center items-center">
<Image
src={image}
alt="Protocol Logo"
loading="lazy"
width="700"
height="700"
className="h-64 w-full object-contain transition duration-500 group-hover:scale-105"
className="h-64 w-full object-contain transition duration-500 group-hover:scale-110"
/>
</div>
<div className="relative mt-4 h-fit">
Expand Down