-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathindex.tsx
53 lines (48 loc) · 1.79 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import styles from "./styles.module.css";
import { coreTeam, QSCollaboratorsTeam, leadershipTeam } from "./Team/team";
import FourValues from "./FourValues";
import SubTeam from "./SubTeam";
import LinkToContact from "../home/LinkToContact";
export function About() {
return (
<div>
<div className="main-container-with-margins">
<div className="container upper-container-with-margin-top">
<div className={"row"}>
<div className={"col flex-full-centered"}>
<FourValues />
</div>
</div>
<div className="row">
<div className="col col--10 col--offset-1">
<h1 className="text--center">Meet the QuantStack team</h1>
<div className={styles.team_description}>
A team of outliers, leaders in software projects adopted at the
global scale, benefiting millions of people worldwide.
</div>
</div>
</div>
<div className="row">
<div className="col">
<SubTeam
subTeamName={"The leadership team"}
subTeam={leadershipTeam}
/>
<SubTeam subTeamName={"The core team"} subTeam={coreTeam} />
<SubTeam
subTeamName={"QuantStack collaborators"}
subTeam={QSCollaboratorsTeam}
/>
</div>
</div>
</div>
</div>
<div className="blue-banner-container">
<div className="blue-banner-header">Join the team</div>
QuantStack is seeking talents in the open-source scientific computing
community. Join a team committed to open-science and free software.
<LinkToContact label={"JOIN THE TEAM!"} />
</div>
</div>
);
}