Skip to content

Commit 212d888

Browse files
Merge pull request #164 from HaudinFlorence/update_projects_page
Update projects page with adding Apache Arrow section.
2 parents 6d297ea + 0614526 commit 212d888

File tree

8 files changed

+271
-3
lines changed

8 files changed

+271
-3
lines changed

Diff for: src/components/projects/ProjectCard.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default function ProjectCard({ project }): JSX.Element {
77
<div className="container">
88
<div className="row row--no-gutters">
99
<div
10-
className={"col col--6 col" + " " + styles.project_text}
10+
className={"col col--6 col col--offset-1" + " " + styles.project_text}
1111
>
1212
<div className={styles.project_title}>{project.title}</div>
1313
<div className={styles.project_description}>

Diff for: src/components/projects/descriptions/ApacheArrow.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
The QuantStack team comprises key maintainers of the Apache Arrow project. The Apache Arrow team at QuantStack provides commercial support and custom development services in the Apache Arrow ecosystem.
2+
3+
Check out our recent <a>announcement</a> on the launch of the Apache Arrow team at QuantStack.

Diff for: src/components/projects/descriptions/Jupyter.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
industry and academia, at the foundation of the main open-source and
77
commercial data science platforms, with millions of users.
88
9-
The team comprises nine core contributors and maintainers the
9+
The team comprises nine core contributors and maintainers of the
1010
project. We are also behind popular extensions for data
1111
visualization, robotics, and dashboarding.
1212

Diff for: src/components/projects/descriptions/Robotics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
We created the RoboStack distribution of ROS, the first conda/mamba
44
based distribution of ROS, and the first cross-platform
55
distribution of ROS. We are behind the jupyter-robotics project, a
6-
collection of JupyterLab and Jupyter extension integrating ROS with
6+
collection of JupyterLab and Jupyter extensions integrating ROS with
77
the Jupyter ecosystem.

Diff for: src/components/projects/descriptions/projectsDetails.ts

+12
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import jupyterLogoUrl from "@site/static/img/projects/Jupyter.png";
22
import xtensorLogoUrl from "@site/static/img/projects/xtensor.png";
33
import condaforgeLogoUrl from "@site/static/img/projects/conda_forge.png";
4+
import apachearrowLogoUrl from "@site/static/img/projects/apache_arrow.png";
45
import robostackPictureUrl from "@site/static/img/projects/robostack.png";
56
import JupyterMD from "./Jupyter.md";
67
import CondaForgeMD from "./CondaForge.md";
78
import XTensorXSIMDMD from "./XTensorXSIMD.md";
9+
import ApacheArrowMD from "./ApacheArrow.md";
810
import RoboticsMD from "./Robotics.md";
911

1012

@@ -39,6 +41,16 @@ export const projectsDetails = [
3941
ProjectMD: CondaForgeMD,
4042
reverse:"false"
4143
},
44+
{
45+
name: "apache_arrow",
46+
title: "Apache Arrow and Parquet",
47+
pictureRoute: apachearrowLogoUrl,
48+
pictureWidth: "176px",
49+
pictureHeight: "63px",
50+
pictureAltText: "Picture for Apache Arrow project showing the logo made of arrows.",
51+
ProjectMD: ApacheArrowMD,
52+
reverse:"false"
53+
},
4254
{
4355
name: "robotics",
4456
title: "Robotics",

Diff for: src/components/projects/styles.module.css

+11
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ div .project_title {
7373
margin-bottom: var(--ifm-spacing-xl);
7474
}
7575

76+
.project_picture_apache_arrow {
77+
border: none;
78+
margin-bottom: var(--ifm-spacing-xl);
79+
}
80+
7681
.project_picture_robotics {
7782
border: none;
7883
margin-bottom: var(--ifm-spacing-xl);
@@ -128,6 +133,12 @@ div .project_title {
128133
border-radius: 10px;
129134
}
130135

136+
.project_picture_apache_arrow {
137+
border: solid 1px black;
138+
margin-bottom: var(--ifm-spacing-lg);
139+
border-radius: 10px;
140+
}
141+
131142
.project_picture_robotics {
132143
border: solid 1px rgb(146, 95, 218);
133144
margin-bottom: var(--ifm-spacing-lg);

Diff for: static/img/projects/apache_arrow.png

3.41 KB
Loading

Diff for: static/img/projects/apache_arrow.svg

+242
Loading

0 commit comments

Comments
 (0)