diff --git a/components/AmbassadorsCard.tsx b/components/AmbassadorsCard.tsx index 68b0b49c8..fc9a6c3f2 100644 --- a/components/AmbassadorsCard.tsx +++ b/components/AmbassadorsCard.tsx @@ -1,5 +1,6 @@ import React, { useState } from 'react'; import Image from 'next/image'; +import Link from 'next/link'; interface Contribution { title: string; @@ -178,39 +179,53 @@ const AmbassadorCard = ({ ambassador }: { ambassador: Ambassador }) => { {contributions.length > 0 && ( )} - {showContributions && contributions.length > 0 && ( -
-

- Contributions -

- -
- )} +
+

+ Contributions +

+ +
);