forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.tsx
More file actions
62 lines (60 loc) · 1.92 KB
/
index.tsx
File metadata and controls
62 lines (60 loc) · 1.92 KB
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
54
55
56
57
58
59
60
61
62
import styles from "./styles.module.css";
import { interviewDetails } from "./interviewDetails";
import Interviews from "./Interviews";
import Header from "./Header";
import VisitWTJProfile from "./VisitWTJProfile";
import JoinTheTeam from "./JoinTheTeam";
import GroupPhotoJupyterConUrl from "@site/static/img/group/group-photo.png";
export default function Careers() {
return (
<div>
<div className="main-container-with-margins">
<div className="container upper-container-with-margin-top">
<div
className={
"row padding-none flex-full-centered"
}
>
<div className="col">
<h1 className="text--center">Join the QuantStack team!</h1>
<div
className={
styles.group_photo_container + " " + "flex-full-centered"
}
>
<img
src={GroupPhotoJupyterConUrl}
alt={
"Picture showing QuantStack people gathered at the Jupytercon in Paris in May 2023."
}
/>
</div>
</div>
</div>
<div
className={
"row flex-full-centered" +
" " +
styles.join_the_team_container
}
>
<div className="col col--10 col--offset-1">
<JoinTheTeam />
</div>
<div className={"row" + " " + "flex-full-container"}>
<div className="col col--8 col--offset-2">
<div className={styles.interviews_container}>
<Interviews
details={interviewDetails}
description={"Working at QuantStack"}
/>
</div>
</div>
</div>
</div>
</div>
</div>
<VisitWTJProfile />
</div>
);
}