From 734cb15a5cb097f21631b449b91a48019f6dfc8d Mon Sep 17 00:00:00 2001 From: Pratham Khanal Date: Thu, 26 Feb 2026 11:31:08 -0600 Subject: [PATCH] Create ContributorCard.js In order to open the contributor tab, I have created the ContributorCard.js. --- components/ContributorCard.js | 49 +++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 components/ContributorCard.js diff --git a/components/ContributorCard.js b/components/ContributorCard.js new file mode 100644 index 0000000..315995f --- /dev/null +++ b/components/ContributorCard.js @@ -0,0 +1,49 @@ +import React from "react"; + +export default function ContributorCard({ name, role, contributions, github, image }) { + return ( +
+
+ {name} +
+

{name}

+

{role}

+
+
+ +
+ Contributions: +
    + {contributions.map((item, i) => ( +
  • {item}
  • + ))} +
+
+ + + View GitHub Profile ↗ + +
+ ); +}