Skip to content

Commit 9ba4d46

Browse files
Merge pull request #240 from HaudinFlorence/add_Arrow_on_home_page
Add Arrow projects on home page
2 parents 30b34ee + a3b452f commit 9ba4d46

File tree

4 files changed

+35
-2
lines changed

4 files changed

+35
-2
lines changed

src/components/home/AboutQS/styles.module.css

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,10 @@
1212
text-align: center;
1313
margin-bottom: var(--ifm-spacing-xl);
1414
}
15-
1615
}
1716

1817
@media only screen and (min-width: 996px) {
1918
.aboutQS_container {
20-
margin-top: var(--ifm-spacing-2xl);
2119
background-color: var(--ifm-color-primary-p1);
2220
color: var(--ifm-color-primary-p2);
2321
padding: var(--ifm-spacing-2xl) var(--ifm-spacing-5xl) 0
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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" + " "+ styles.project_light_yellow} style={{paddingBottom : "0px"}}>
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 key data analysis technologies.
15+
</h2>
16+
<DataAnalysisMD />
17+
</div>
18+
<div className={"col col--5"+ " " + styles.col_project_overview_with_padding}>
19+
20+
<ApacheArrowPicture width={"500px"}/>
21+
</div>
22+
</div>
23+
</div>
24+
);
25+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
Since 2024, QuantStack is involved in the development of:
3+
4+
- Apache Arrow, a memory format designed for efficient columnar data storage. It serves as the foundation for many data science frameworks, enabling seamless interoperability between various data systems and programming languages,
5+
6+
- Apache Parquet, a column-oriented data file format designed for efficient data storage and retrieval.
7+
8+
QuantStack is home to several maintainers of the project who are committed to its continuous improvement and advancement.

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)