Skip to content

Commit a0be54a

Browse files
Add Arrow projects on home page.
1 parent 4b4d0d8 commit a0be54a

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import styles from "./styles.module.css";
2+
import DataAnalysisMD from "@site/src/components/home/ProjectsOverview/descriptions/DataAnalysis.md";
3+
import ApacheArrowPicture from "@site/static/img/projects/apache_arrow.svg";
4+
5+
export default function DataAnalysisProjects() {
6+
return (
7+
<div className={"container"}>
8+
<div className="row">
9+
<div
10+
className={"col col--5 col--offset-1" + " " + styles.col_project_overview_with_padding}
11+
>
12+
<h1 className="padding-none">Data Analysis </h1>
13+
<h2 className={styles.h2_custom}>
14+
Supporting the development of Apache Ecosystem
15+
packages.
16+
</h2>
17+
<DataAnalysisMD />
18+
</div>
19+
<div className={"col col--5"+ " " + styles.col_project_overview_with_padding}>
20+
21+
<ApacheArrowPicture width={"500px"}/>
22+
</div>
23+
</div>
24+
</div>
25+
);
26+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
Since 2024, QuantStack is involved in the development of:
3+
4+
- Apache Arrow, a language independent columnar format and multi-language toolbox for fast data interchange and in-memory analytics
5+
6+
- Apache Parquet, a column-oriented data file format designed for efficient data storage and retrieval

src/components/home/ProjectsOverview/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import SupplyChainProjects from "./SupplyChain";
33
import SpecialProjects from "./SpecialProjects";
44
import RoboticsProjects from "./Robotics";
55
import ComputingProjects from "./Computing";
6+
import DataAnalysisProjects from "./DataAnalysis";
67
import styles from "./styles.module.css";
78

89
export default function ProjectsOverview() {
@@ -13,6 +14,7 @@ export default function ProjectsOverview() {
1314
<SpecialProjects />
1415
<RoboticsProjects />
1516
<ComputingProjects />
17+
<DataAnalysisProjects />
1618
</div>
1719
);
1820
}

0 commit comments

Comments
 (0)