forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDataAnalysis.tsx
More file actions
25 lines (23 loc) · 954 Bytes
/
DataAnalysis.tsx
File metadata and controls
25 lines (23 loc) · 954 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
import styles from "./styles.module.css";
import DataAnalysisMD from "@site/src/components/home/ProjectsOverview/descriptions/DataAnalysis.md";
import ApacheArrowPicture from "@site/static/img/projects/apache_arrow.svg";
export default function DataAnalysisProjects() {
return (
<div className={"container" + " "+ styles.project_light_yellow} style={{paddingBottom : "0px"}}>
<div className="row">
<div
className={"col col--5 col--offset-1" + " " + styles.col_project_overview_with_padding}
>
<h1 className="padding-none">Data Analysis </h1>
<h2 className={styles.h2_custom}>
Supporting the development of key data analysis technologies.
</h2>
<DataAnalysisMD />
</div>
<div className={"col col--5"+ " " + styles.col_project_overview_with_padding}>
<ApacheArrowPicture width={"500px"}/>
</div>
</div>
</div>
);
}