Skip to content
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

Add the blogpost related to the new Apache Arrow team #160

Merged
Merged
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
14 changes: 13 additions & 1 deletion src/components/blog/blogpostsDetails.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
[
[ {
"url": "https://medium.com/@QuantStack/quantstack-steps-up-to-support-apache-arrow-with-new-dedicated-team-9ddc952f20e2",
"title": "QuantStack Steps Up to Support Apache Arrow with New Dedicated Team",
"image": "/img/blogposts/QuantStack-Steps-Up-to-Support-Apache-Arrow-with-New-Dedicated-Team.png",
"summary": " We are thrilled to announce that QuantStack is starting a new team dedicated to the maintenance and development of Apache Arrow.",
"date": "October 22, 2024",
"authors": "Sylvain Corlay",
"imageID": "blogpost-image-123",
"imageNaturalWidth": 1700,
"imageNaturalHeight": 900,
"imageRenderedWidth": 273,
"imageRenderedHeight": 144.529411765
},
{
"url": "https://blog.jupyter.org/interactive-mapping-with-ipyopenlayers-2b8bc93bb6c4",
"title": "Interactive Mapping with ipyopenlayers",
Expand Down
6 changes: 3 additions & 3 deletions src/components/blog/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}

.blogpost_card {
height: 540px;
height: 556px;
width: 369px;
border-radius: 8px;
box-shadow: 4px 4px 18px -1px #dee0fc;
Expand Down Expand Up @@ -39,7 +39,7 @@ div .blogpost_date {
letter-spacing: -0.154px;
text-align: justify;
margin-bottom: var(--ifm-spacing-sm);
height: 140px;
height: 124px;
color: var(--ifm-text-color);
}

Expand All @@ -51,7 +51,7 @@ div .blogpost_date {
font-weight: 600;
line-height: 150%; /* 27px */
letter-spacing: -0.198px;
height: 48px;
height: 64px;
margin: var(--ifm-spacing-xl) 0;
color: var(--ifm-text-color);
}
Expand Down
30 changes: 18 additions & 12 deletions src/components/projects/AllProjects.tsx
Original file line number Diff line number Diff line change
@@ -1,21 +1,27 @@
import { projectsDetails } from "./descriptions/projectsDetails";
import ProjectCard from "./ProjectCard"

import ProjectCard from "./ProjectCard";

export default function AllProjects() {
return (
<div className="container flex-full-centered" style={{marginBottom: "var(--ifm-spacing-3xl)"}}>
<ul className="row">
<div
className="container flex-full-centered"
style={{ marginBottom: "var(--ifm-spacing-3xl)" }}
>
<ul className="row --no-gutters">
{projectsDetails.map((project, index) => {
return(
<li className="projects-list" key={index}>
<div className="col">
<ProjectCard project={project}/>
</div>
</li>
)
return (
<li
className="projects-list"
key={index}

>
<div className="col" style={{ paddingLeft: "0" }}>
<ProjectCard project={project} />
</div>
</li>
);
})}
</ul>
</div>
)
);
}
7 changes: 3 additions & 4 deletions src/components/projects/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ div .project_title {
}

.project_description {
padding: var(--ifm-spacing-md) var(--ifm-spacing-xl);
text-align: center;
padding: var(--ifm-spacing-sm) var(--ifm-spacing-xl);
}

.project_description p {
Expand Down Expand Up @@ -51,7 +50,7 @@ div .project_title {

.col_project_text p {
background-color: white;
text-align: justify;
text-align: center;
}

.project_picture_jupyter {
Expand Down Expand Up @@ -96,7 +95,7 @@ div .project_title {
}

.header_text p {
text-align: center;
text-align: justify;
}

.project_text {
Expand Down
9 changes: 7 additions & 2 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ ul {
padding-left: 0;
}

ul.row {
padding-left: 0;
}

.container {
max-width: none;
padding: 0;
Expand Down Expand Up @@ -216,7 +220,7 @@ ul {

li {
font-size: 14px;
margin-left: 24px;
margin-left: 14px;
}

.blue-banner-container {
Expand Down Expand Up @@ -637,10 +641,11 @@ a.menu__link:active {
.cards-list {
list-style-type: none;
padding: none;
margin-left: 0;
}

.projects-list {
list-style-type: none;
padding: none;
width: 100%;
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.