diff --git a/components/card.tsx b/components/card.tsx index bdb3299..d157be3 100644 --- a/components/card.tsx +++ b/components/card.tsx @@ -9,38 +9,45 @@ interface Props { link: string } -const Card: React.FC = ({ index, image, title, description, link }) => { +const Card: React.FC = ({ image, title, description, link }) => { return ( - +
-
+ {/* Image container — removed overflow-hidden so zoom can overflow */} +
Protocol Logo
+
-

+

{title}

- {description.split("\n").map((item, key) => { - return ( - - {item} -
-
- ) - })} + {description.split("\n").map((item, key) => ( + + {item} +
+
+ ))}

+ +
+ + + Learn more + + +
)