diff --git a/landing/footer.react.js b/landing/footer.react.js
index f83a0ebc3..68af5cf4a 100644
--- a/landing/footer.react.js
+++ b/landing/footer.react.js
@@ -1,55 +1,67 @@
// @flow
import { faExternalLinkSquareAlt } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import * as React from 'react';
import { NavLink } from 'react-router-dom';
+import { isDev } from 'lib/utils/dev-utils';
+
import css from './footer.css';
import SubscriptionForm from './subscription-form.react';
const navLinkProps = {
activeStyle: {
color: 'white',
fontWeight: '500',
},
};
function Footer(): React.Node {
+ let teamLink;
+ if (isDev) {
+ teamLink = (
+
+ Team
+
+ );
+ }
+
return (
);
}
export default Footer;