@@ -2,6 +2,8 @@ import styles from "./styles.module.css";
22import { teams } from "./Team/team" ;
33import FourValues from "./FourValues" ;
44import SubTeam from "./SubTeam" ;
5+ import Section from "../layout/Section" ;
6+ import Banner from "../layout/Banner" ;
57import LinkToContact from "../home/LinkToContact" ;
68
79export function getTeamByPageName ( name : string ) {
@@ -14,21 +16,18 @@ export function getTeamByPageName(name: string) {
1416 return null ;
1517}
1618
17-
1819export function About ( ) {
1920 return (
20- < div >
21- < div className = "page-content upper-container-with-margin-top" >
21+ < >
22+ < Section pageTop >
2223 < FourValues />
23-
24- < div className = "row-with-margins" >
25- < h1 > Meet the QuantStack team</ h1 >
26- < div className = { styles . team_description } >
27- A team of outliers, leaders in software projects adopted at the
28- global scale, benefiting millions of people worldwide.
29- </ div >
24+ </ Section >
25+ < Section bg = "light" >
26+ < h1 > Meet the QuantStack team</ h1 >
27+ < div className = { styles . team_description } >
28+ A team of outliers, leaders in software projects adopted at the
29+ global scale, benefiting millions of people worldwide.
3030 </ div >
31-
3231 < SubTeam
3332 subTeamName = { "The leadership team" }
3433 subTeam = { teams . leadershipTeam }
@@ -38,13 +37,15 @@ export function About() {
3837 subTeamName = { "QuantStack collaborators" }
3938 subTeam = { teams . QSCollaboratorsTeam }
4039 />
41- </ div >
42- < div className = "blue-banner-container" >
43- < div className = "blue-banner-header" > Join the team</ div >
40+ </ Section >
41+ < Banner
42+ bg = "dark"
43+ title = "Join the team"
44+ cta = { < LinkToContact label = { "JOIN THE TEAM!" } /> }
45+ >
4446 QuantStack is seeking talents in the open-source scientific computing
4547 community. Join a team committed to open-science and free software.
46- < LinkToContact label = { "JOIN THE TEAM!" } />
47- </ div >
48- </ div >
48+ </ Banner >
49+ </ >
4950 ) ;
5051}
0 commit comments