forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSupplyChain.tsx
More file actions
39 lines (38 loc) · 1.17 KB
/
SupplyChain.tsx
File metadata and controls
39 lines (38 loc) · 1.17 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
import styles from "./styles.module.css";
import SupplyChainMD from "./descriptions/SupplyChain.md";
import MambaPictureUrl from "@site/static/img/projects/mamba_console.png";
export default function SupplyChainProjects() {
return (
<div className={styles.container_projects + " " + styles.project_light_yellow}>
<div className="row-max-width">
<div
className={
"col col--6" +
" " +
styles.col_project_overview_with_padding
}
>
<h1 className="padding-none">Software supply chain </h1>
<h2 className={styles.h2_custom}>
We are the main organization supporting the mamba package manager.
</h2>
<div className="spacing-2xl"></div>
<SupplyChainMD />
</div>
<div
className={
"col col--6 flex-full-centered" +
" " +
styles.col_project_overview_with_padding
}
>
<img
src={MambaPictureUrl}
width={"486px"}
alt={"Picture showing a terminal in which mamba commands are run."}
/>
</div>
</div>
</div>
);
}