diff --git a/landing/team-profile.react.js b/landing/team-profile.react.js
index 09314e1f4..4dad5150b 100644
--- a/landing/team-profile.react.js
+++ b/landing/team-profile.react.js
@@ -1,81 +1,77 @@
// @flow
import { faTwitter, faGithub } from '@fortawesome/free-brands-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import * as React from 'react';
import FarcasterLogo from './assets/farcaster-logo.react.js';
import css from './team-profile.css';
import typography from './typography.css';
type Props = {
+name: string,
+role: string,
+imageURL: string,
+githubHandle?: string,
+twitterHandle?: string,
+farcasterHandle?: string,
};
-const fontAwesomeIconProps = {
- size: 'm',
-};
-
function TeamProfile(props: Props): React.Node {
const { name, role, imageURL, githubHandle, twitterHandle, farcasterHandle } =
props;
let twitterLink;
if (twitterHandle) {
twitterLink = (
-
+
);
}
let githubLink;
if (githubHandle) {
githubLink = (
-
+
);
}
let farcasterLink;
if (farcasterHandle) {
farcasterLink = (
);
}
return (
{name}
{role}
{githubLink}
{farcasterLink}
{twitterLink}
);
}
export default TeamProfile;