@@ -62,7 +63,7 @@ class Footer extends React.Component {
{"Hadfield "}
{"et al., "}
Nextstrain: real-time tracking of pathogen evolution
, Bioinformatics (2018)
- {(typeof window !== 'undefined' && window.location.pathname.replace(/\//g, "")!=="team") && (
+ {showTeamAvatars && (
<>
The core Nextstrain team is
diff --git a/static-site/src/layouts/generic-page.jsx b/static-site/src/layouts/generic-page.jsx
index 3cd8a44e0..11865df67 100644
--- a/static-site/src/layouts/generic-page.jsx
+++ b/static-site/src/layouts/generic-page.jsx
@@ -7,7 +7,7 @@ import UserDataWrapper from "../layouts/userDataWrapper";
import { BigSpacer, HugeSpacer, Line } from "../layouts/generalComponents";
import * as splashStyles from "../components/splash/styles";
-const GenericPage = ({location, children, banner}) => (
+const GenericPage = ({location, children, banner, footerProps}) => (
@@ -19,7 +19,7 @@ const GenericPage = ({location, children, banner}) => (
{children}
-
+
diff --git a/static-site/src/pages/team.jsx b/static-site/src/pages/team.jsx
deleted file mode 100644
index fc3263cff..000000000
--- a/static-site/src/pages/team.jsx
+++ /dev/null
@@ -1,66 +0,0 @@
-import React from "react";
-import styled from "styled-components";
-import GenericPage from "../layouts/generic-page";
-import { BigSpacer, FlexCenter} from "../layouts/generalComponents";
-import { CenteredFocusParagraph } from "../components/splash/styles";
-import { ListOfPeople } from "../components/People/avatars";
-
-const H1 = styled.div`
- text-align: center;
- font-size: 32px;
- line-height: 32px;
- font-weight: 300;
- color: ${(props) => props.theme.darkGrey};
- min-width: 240px;
- margin-top: 0px;
- margin-bottom: 20px;
-`;
-
-const TeamPage = () => {
- console.log("
");
- return (
-
-
Nextstrain core team
-
-
-
- {"Nextstrain was co-founded by:"}
-
-
-
-
-
-
-
- {"The core team currently working on Nextstrain are:"}
-
-
-
-
-
-
Nextstrain Alumni
-
-
- {`Our previous core Nextstrain team members, some of whom are still working on projects involving Nextstrain and/or maintaining specific analyses. `}
- {"Beyond the core team there have been many code contributions from the wider scientific and programming community; please see "}
- our GitHub organization
- {" to see the history of (code) contributions."}
-
-
-
-
-
-
-
- );
-};
-
-
-const Team = props => (
-
-
-
-);
-
-export default Team;
-