diff --git a/components/card.tsx b/components/card.tsx index bdb3299..fab94f1 100644 --- a/components/card.tsx +++ b/components/card.tsx @@ -12,37 +12,36 @@ interface Props { const Card: React.FC = ({ index, image, title, description, link }) => { return ( -
-
- Protocol Logo -
-
-

- {title} -

-

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

-
-
- +
+
+ Protocol Logo +
+
+

+ {title} +

+

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

+
+
+ + ) }