Skip to content

Commit

Permalink
#18 add fnd icons to team members
Browse files Browse the repository at this point in the history
  • Loading branch information
pipercucu committed Oct 19, 2023
1 parent 65dd4c5 commit c2695b7
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 4 deletions.
14 changes: 14 additions & 0 deletions src/assets/socials/team/foundation.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 13 additions & 4 deletions src/components/Team.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import julesDeriv from "../assets/team/derivatives/jules.png";

import twitter from "../assets/socials/team/twitter.svg";
import github from "../assets/socials/team/github.svg";
import foundation from "../assets/socials/team/foundation.svg";

interface TeamMemberType {
name: string;
Expand All @@ -31,6 +32,7 @@ interface TeamMemberType {
deriv?: string;
twitter?: string;
github?: string;
foundation?: string;
}

const members: TeamMemberType[] = [
Expand All @@ -39,34 +41,39 @@ const members: TeamMemberType[] = [
role: "Co-Founder & Artist",
image: laur,
twitter: "https://twitter.com/fungibleartist",
foundation: "https://foundation.app/@laur",
deriv: laurDeriv,
},
{
name: "Kiwi",
role: "Co-Founder & Dev",
image: kiwi,
twitter: "https://twitter.com/0xKiwi_",
foundation: "https://foundation.app/@Kiwi",
deriv: kiwiDeriv,
},
{
name: "Morello",
role: "Bit of everything",
image: morello,
twitter: "https://twitter.com/morellostorment",
foundation: "https://foundation.app/@morello",
deriv: morelloDeriv,
},
{
name: "Omar",
role: "Community Manager",
image: omar,
twitter: "https://twitter.com/OmarIbisa",
foundation: "https://foundation.app/@omr",
deriv: omarDeriv,
},
{
name: "Danny",
role: "Partnerships Manager",
image: danny,
twitter: "https://twitter.com/0xMaple",
foundation: "https://foundation.app/@0xMaple",
deriv: dannyDeriv,
},
{
Expand All @@ -80,13 +87,15 @@ const members: TeamMemberType[] = [
role: "Creative assistant",
image: jules,
twitter: "https://twitter.com/0xMaple",
foundation: "https://foundation.app/@jujulesblanc",
deriv: julesDeriv,
},
{
name: "Cucurbit",
role: "Front End Dev",
image: cucurbit,
twitter: "https://twitter.com/PiperCucu",
foundation: "https://foundation.app/@milky.eth",
},
{
name: "CatInKleins",
Expand Down Expand Up @@ -142,16 +151,16 @@ const Team = () => {
/>
</a>
)}
{member.github && (
{member.foundation && (
<a
href={member.github}
href={member.foundation}
target="_blank"
rel="noopener noreferrer"
className="team-member-social-link"
>
<img
src={github}
alt="github"
src={foundation}
alt="foundation"
className="team-member-social-image"
/>
</a>
Expand Down

0 comments on commit c2695b7

Please sign in to comment.