Skip to content

Commit c7fdf66

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

File tree

6 files changed

+36
-4
lines changed

6 files changed

+36
-4
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: 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" + " "+ 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 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
}

static/rss.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<description><![CDATA[RSS feed for QuantStack website blog page]]></description>
55
<link>https://quantstack.net</link>
66
<generator>RSS for Node</generator>
7-
<lastBuildDate>Tue, 01 Jul 2025 16:14:17 GMT</lastBuildDate>
7+
<lastBuildDate>Tue, 01 Jul 2025 17:54:10 GMT</lastBuildDate>
88
<atom:link href="https://quantstack.net/rss.xml" rel="self" type="application/rss+xml"/>
99
<language><![CDATA[en]]></language>
1010
<item>

static/rss_all.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<description><![CDATA[RSS feed for QuantStack website blog page]]></description>
55
<link>https://quantstack.net</link>
66
<generator>RSS for Node</generator>
7-
<lastBuildDate>Tue, 01 Jul 2025 16:14:17 GMT</lastBuildDate>
7+
<lastBuildDate>Tue, 01 Jul 2025 17:54:10 GMT</lastBuildDate>
88
<atom:link href="https://quantstack.net/rss_all.xml" rel="self" type="application/rss+xml"/>
99
<language><![CDATA[en]]></language>
1010
<item>

0 commit comments

Comments
 (0)