Skip to content

Commit

Permalink
Merge pull request #164 from HaudinFlorence/update_projects_page
Browse files Browse the repository at this point in the history
Update projects page with adding Apache Arrow section.
  • Loading branch information
SylvainCorlay authored Oct 24, 2024
2 parents 6d297ea + 0614526 commit 212d888
Show file tree
Hide file tree
Showing 8 changed files with 271 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/projects/ProjectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function ProjectCard({ project }): JSX.Element {
<div className="container">
<div className="row row--no-gutters">
<div
className={"col col--6 col" + " " + styles.project_text}
className={"col col--6 col col--offset-1" + " " + styles.project_text}
>
<div className={styles.project_title}>{project.title}</div>
<div className={styles.project_description}>
Expand Down
3 changes: 3 additions & 0 deletions src/components/projects/descriptions/ApacheArrow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
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.

Check out our recent <a>announcement</a> on the launch of the Apache Arrow team at QuantStack.
2 changes: 1 addition & 1 deletion src/components/projects/descriptions/Jupyter.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
industry and academia, at the foundation of the main open-source and
commercial data science platforms, with millions of users.
The team comprises nine core contributors and maintainers the
The team comprises nine core contributors and maintainers of the
project. We are also behind popular extensions for data
visualization, robotics, and dashboarding.
Expand Down
2 changes: 1 addition & 1 deletion src/components/projects/descriptions/Robotics.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
We created the RoboStack distribution of ROS, the first conda/mamba
based distribution of ROS, and the first cross-platform
distribution of ROS. We are behind the jupyter-robotics project, a
collection of JupyterLab and Jupyter extension integrating ROS with
collection of JupyterLab and Jupyter extensions integrating ROS with
the Jupyter ecosystem.
12 changes: 12 additions & 0 deletions src/components/projects/descriptions/projectsDetails.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import jupyterLogoUrl from "@site/static/img/projects/Jupyter.png";
import xtensorLogoUrl from "@site/static/img/projects/xtensor.png";
import condaforgeLogoUrl from "@site/static/img/projects/conda_forge.png";
import apachearrowLogoUrl from "@site/static/img/projects/apache_arrow.png";
import robostackPictureUrl from "@site/static/img/projects/robostack.png";
import JupyterMD from "./Jupyter.md";
import CondaForgeMD from "./CondaForge.md";
import XTensorXSIMDMD from "./XTensorXSIMD.md";
import ApacheArrowMD from "./ApacheArrow.md";
import RoboticsMD from "./Robotics.md";


Expand Down Expand Up @@ -39,6 +41,16 @@ export const projectsDetails = [
ProjectMD: CondaForgeMD,
reverse:"false"
},
{
name: "apache_arrow",
title: "Apache Arrow and Parquet",
pictureRoute: apachearrowLogoUrl,
pictureWidth: "176px",
pictureHeight: "63px",
pictureAltText: "Picture for Apache Arrow project showing the logo made of arrows.",
ProjectMD: ApacheArrowMD,
reverse:"false"
},
{
name: "robotics",
title: "Robotics",
Expand Down
11 changes: 11 additions & 0 deletions src/components/projects/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ div .project_title {
margin-bottom: var(--ifm-spacing-xl);
}

.project_picture_apache_arrow {
border: none;
margin-bottom: var(--ifm-spacing-xl);
}

.project_picture_robotics {
border: none;
margin-bottom: var(--ifm-spacing-xl);
Expand Down Expand Up @@ -128,6 +133,12 @@ div .project_title {
border-radius: 10px;
}

.project_picture_apache_arrow {
border: solid 1px black;
margin-bottom: var(--ifm-spacing-lg);
border-radius: 10px;
}

.project_picture_robotics {
border: solid 1px rgb(146, 95, 218);
margin-bottom: var(--ifm-spacing-lg);
Expand Down
Binary file added static/img/projects/apache_arrow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
242 changes: 242 additions & 0 deletions static/img/projects/apache_arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 212d888

Please sign in to comment.