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: + +
+ + + View GitHub Profile ↗ + +
+ ); +}