Skip to content

Add Arrow projects on home page #240

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
static/rss* linguist-generated=true
2 changes: 0 additions & 2 deletions src/components/home/AboutQS/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,10 @@
text-align: center;
margin-bottom: var(--ifm-spacing-xl);
}

}

@media only screen and (min-width: 996px) {
.aboutQS_container {
margin-top: var(--ifm-spacing-2xl);
background-color: var(--ifm-color-primary-p1);
color: var(--ifm-color-primary-p2);
padding: var(--ifm-spacing-2xl) var(--ifm-spacing-5xl) 0
Expand Down
25 changes: 25 additions & 0 deletions src/components/home/ProjectsOverview/DataAnalysis.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import styles from "./styles.module.css";
import DataAnalysisMD from "@site/src/components/home/ProjectsOverview/descriptions/DataAnalysis.md";
import ApacheArrowPicture from "@site/static/img/projects/apache_arrow.svg";

export default function DataAnalysisProjects() {
return (
<div className={"container" + " "+ styles.project_light_yellow} style={{paddingBottom : "0px"}}>
<div className="row">
<div
className={"col col--5 col--offset-1" + " " + styles.col_project_overview_with_padding}
>
<h1 className="padding-none">Data Analysis </h1>
<h2 className={styles.h2_custom}>
Supporting the development of key data analysis technologies.
</h2>
<DataAnalysisMD />
</div>
<div className={"col col--5"+ " " + styles.col_project_overview_with_padding}>

<ApacheArrowPicture width={"500px"}/>
</div>
</div>
</div>
);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

Since 2024, QuantStack is involved in the development of:

- Apache Arrow, a language independent columnar format and multi-language toolbox for fast data interchange and in-memory analytics

- Apache Parquet, a column-oriented data file format designed for efficient data storage and retrieval
2 changes: 2 additions & 0 deletions src/components/home/ProjectsOverview/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import SupplyChainProjects from "./SupplyChain";
import SpecialProjects from "./SpecialProjects";
import RoboticsProjects from "./Robotics";
import ComputingProjects from "./Computing";
import DataAnalysisProjects from "./DataAnalysis";
import styles from "./styles.module.css";

export default function ProjectsOverview() {
Expand All @@ -13,6 +14,7 @@ export default function ProjectsOverview() {
<SpecialProjects />
<RoboticsProjects />
<ComputingProjects />
<DataAnalysisProjects />
</div>
);
}
2 changes: 1 addition & 1 deletion static/rss.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion static/rss_all.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.