forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJupyter.tsx
More file actions
28 lines (26 loc) · 970 Bytes
/
Jupyter.tsx
File metadata and controls
28 lines (26 loc) · 970 Bytes
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
import styles from "./styles.module.css";
import JupyterMD from "./descriptions/Jupyter.md";
import JupyterPictureUrl from "@site/static/img/projects/jupyterlab_examples.png";
export default function JupyterProject() {
return (
<div
className={styles.container_projects}
style={{
marginTop: "var(--ifm-spacing-4xl)",
}}
>
<div className={styles.row_projects}>
<div className={"col col--6" + " " + styles.col_project_overview_with_padding}>
<h1 className="padding-none">Jupyter project </h1>
<h2 className={styles.h2_custom}>We strive to sustain the project in the long term.</h2>
<JupyterMD/>
</div>
<div
className={"col col--6 flex-full-centered"+" " +styles.col_project_overview_with_padding}
>
<img src={JupyterPictureUrl} width={"540px"} alt={"Picture showing two jupyterlab user interfaces"}/>
</div>
</div>
</div>
);
}