-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert 'team' page to app router [#134]
Note: this includes some updates to the FocusParagraph component which required some knock-on changes in the 'contact' page, due to the exports of FocusParagraph changing.
- Loading branch information
Showing
10 changed files
with
194 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// import { BigSpacer, FlexCenter} from "../layouts/generalComponents"; | ||
// import { CenteredFocusParagraph } from "../components/splash/styles"; | ||
// import { TeamPageList } from "../components/People/avatars"; | ||
|
||
import { ReactElement } from "react"; | ||
|
||
import FlexCenter from "../../components/flex-center"; | ||
import { FocusParagraphCentered } from "../../components/focus-paragraph"; | ||
import { BigSpacer } from "../../components/spacers"; | ||
import { TeamPageList } from "../../components/people/avatars"; | ||
|
||
import styles from "./styles.module.css"; | ||
|
||
export default function TeamPage(): ReactElement { | ||
return ( | ||
<div className={styles.teamPage}> | ||
<h1>Nextstrain core team</h1> | ||
<FlexCenter> | ||
<FocusParagraphCentered> | ||
Nextstrain was co-founded by: | ||
</FocusParagraphCentered> | ||
</FlexCenter> | ||
<TeamPageList membersKey="founders" /> | ||
<FlexCenter> | ||
<FocusParagraphCentered> | ||
The core team currently working on Nextstrain are: | ||
</FocusParagraphCentered> | ||
</FlexCenter> | ||
<TeamPageList membersKey="core" /> | ||
<h1>Nextstrain Alumni</h1> | ||
<FlexCenter> | ||
<FocusParagraphCentered> | ||
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{" "} | ||
<a href="https://github.com/nextstrain">our GitHub organization</a> to | ||
see the history of (code) contributions. | ||
</FocusParagraphCentered> | ||
</FlexCenter> | ||
<BigSpacer /> | ||
<TeamPageList membersKey="alumni" /> | ||
<h1>Scientific Advisory Board</h1> | ||
<FlexCenter> | ||
<FocusParagraphCentered> | ||
In Oct 2023, a scientific advisory board was founded to provide | ||
guidance on future directions for the Nextstrain project. | ||
</FocusParagraphCentered> | ||
</FlexCenter> | ||
<TeamPageList membersKey="board" /> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.teamPage h1 { | ||
color: var(--darkGrey); | ||
font-size: 32px; | ||
font-weight: 300; | ||
line-height: 32px; | ||
margin-bottom: 20px; | ||
margin-top: 0px; | ||
min-width: 240px; | ||
text-align: center; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
.flexCenter { | ||
display: flex; | ||
flex-wrap: nowrap; | ||
justify-content: center; | ||
margin: 0px; | ||
padding: 0px; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,22 @@ | ||
/* this is the basic style for all FocusParagraph */ | ||
.focus { | ||
font-size: var(--niceFontSize); | ||
font-weight: 300; | ||
line-height: var(--tightLineHight); | ||
margin: 20px 0px 0px; | ||
max-width: 640px; | ||
} | ||
|
||
/* this is specifically *added* to the base style for FocusParagraphCentered */ | ||
.centered { | ||
margin: 20px 0 0; | ||
text-align: center; | ||
} | ||
.centered > strong { | ||
font-weight: 500; | ||
} | ||
|
||
/* this is specifically *added* to the base style for FocusParagraphNarrow */ | ||
.narrow { | ||
margin: 20px 0px 0px; | ||
text-align: left; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,71 @@ | ||
.commonWrapper { | ||
& a { | ||
font-weight: 500 !important; | ||
color: #333 !important; | ||
} | ||
& img { | ||
margin-left: 5px; | ||
border-radius: 50%; | ||
vertical-align: middle; | ||
} | ||
.commonWrapper a { | ||
color: #333 !important; | ||
font-weight: 500 !important; | ||
} | ||
.commonWrapper img { | ||
border-radius: 50%; | ||
margin-left: 5px; | ||
vertical-align: middle; | ||
} | ||
|
||
.footerWrapper { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
} | ||
.footerWrapper a { | ||
color: #333 !important; | ||
font-weight: 500 !important; | ||
} | ||
.footerWrapper img { | ||
border-radius: 50%; | ||
height: 32px; | ||
margin-left: 5px; | ||
margin-right: 8px; | ||
vertical-align: middle; | ||
width: 32px; | ||
} | ||
|
||
.teamPageWrapper { | ||
display: grid; | ||
font-size: 18px; | ||
justify-content: center; | ||
grid-template-columns: minmax(min-content, 500px); | ||
padding: 20px 0px; | ||
|
||
& a { | ||
font-weight: 500 !important; | ||
color: #333 !important; | ||
} | ||
& img { | ||
border-radius: 50%; | ||
height: 32px; | ||
margin-left: 5px; | ||
margin-right: 8px; | ||
vertical-align: middle; | ||
width: 32px; | ||
/* Bootstrap's .container applies 25px left and right margins. Account for */ | ||
/* that when computing the minimum width to support two 333px columns. */ | ||
@media (min-width: calc(333px*2 + 25px*2)) { | ||
grid-template-columns: repeat(auto-fit, 333px); | ||
} | ||
} | ||
.teamPageWrapper a { | ||
color: var(--darkGrey); | ||
} | ||
.teamPageWrapper img { | ||
border-radius: 50%; | ||
height: 60px; | ||
margin-left: 5px; | ||
margin-right: 20px; | ||
vertical-align: middle; | ||
width: 60px; | ||
} | ||
|
||
.sideways { | ||
display: flex; | ||
flex-wrap: nowrap; | ||
justify-content: flex-start; | ||
padding: 10px 15px; | ||
} | ||
|
||
.updown { | ||
display: flex; | ||
flex-direction: column; | ||
flex-wrap: nowrap; | ||
justify-content: flex-start; | ||
} | ||
|
||
.blurb { | ||
font-size: 14px; | ||
text-align: left; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.