Skip to content

Commit 74f0ebc

Browse files
Merge pull request #160 from HaudinFlorence/add_apache_arrow_blogpost
Add the blogpost related to the new Apache Arrow team
2 parents dec1a63 + 8925652 commit 74f0ebc

File tree

6 files changed

+44
-22
lines changed

6 files changed

+44
-22
lines changed

src/components/blog/blogpostsDetails.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
[
1+
[ {
2+
"url": "https://medium.com/@QuantStack/quantstack-steps-up-to-support-apache-arrow-with-new-dedicated-team-9ddc952f20e2",
3+
"title": "QuantStack Steps Up to Support Apache Arrow with New Dedicated Team",
4+
"image": "/img/blogposts/QuantStack-Steps-Up-to-Support-Apache-Arrow-with-New-Dedicated-Team.png",
5+
"summary": " We are thrilled to announce that QuantStack is starting a new team dedicated to the maintenance and development of Apache Arrow.",
6+
"date": "October 22, 2024",
7+
"authors": "Sylvain Corlay",
8+
"imageID": "blogpost-image-123",
9+
"imageNaturalWidth": 1700,
10+
"imageNaturalHeight": 900,
11+
"imageRenderedWidth": 273,
12+
"imageRenderedHeight": 144.529411765
13+
},
214
{
315
"url": "https://blog.jupyter.org/interactive-mapping-with-ipyopenlayers-2b8bc93bb6c4",
416
"title": "Interactive Mapping with ipyopenlayers",

src/components/blog/styles.module.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
}
44

55
.blogpost_card {
6-
height: 540px;
6+
height: 556px;
77
width: 369px;
88
border-radius: 8px;
99
box-shadow: 4px 4px 18px -1px #dee0fc;
@@ -39,7 +39,7 @@ div .blogpost_date {
3939
letter-spacing: -0.154px;
4040
text-align: justify;
4141
margin-bottom: var(--ifm-spacing-sm);
42-
height: 140px;
42+
height: 124px;
4343
color: var(--ifm-text-color);
4444
}
4545

@@ -51,7 +51,7 @@ div .blogpost_date {
5151
font-weight: 600;
5252
line-height: 150%; /* 27px */
5353
letter-spacing: -0.198px;
54-
height: 48px;
54+
height: 64px;
5555
margin: var(--ifm-spacing-xl) 0;
5656
color: var(--ifm-text-color);
5757
}
Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
11
import { projectsDetails } from "./descriptions/projectsDetails";
2-
import ProjectCard from "./ProjectCard"
3-
2+
import ProjectCard from "./ProjectCard";
43

54
export default function AllProjects() {
65
return (
7-
<div className="container flex-full-centered" style={{marginBottom: "var(--ifm-spacing-3xl)"}}>
8-
<ul className="row">
6+
<div
7+
className="container flex-full-centered"
8+
style={{ marginBottom: "var(--ifm-spacing-3xl)" }}
9+
>
10+
<ul className="row --no-gutters">
911
{projectsDetails.map((project, index) => {
10-
return(
11-
<li className="projects-list" key={index}>
12-
<div className="col">
13-
<ProjectCard project={project}/>
14-
</div>
15-
</li>
16-
)
12+
return (
13+
<li
14+
className="projects-list"
15+
key={index}
16+
17+
>
18+
<div className="col" style={{ paddingLeft: "0" }}>
19+
<ProjectCard project={project} />
20+
</div>
21+
</li>
22+
);
1723
})}
1824
</ul>
1925
</div>
20-
)
26+
);
2127
}

src/components/projects/styles.module.css

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ div .project_title {
1616
}
1717

1818
.project_description {
19-
padding: var(--ifm-spacing-md) var(--ifm-spacing-xl);
20-
text-align: center;
19+
padding: var(--ifm-spacing-sm) var(--ifm-spacing-xl);
2120
}
2221

2322
.project_description p {
@@ -51,7 +50,7 @@ div .project_title {
5150

5251
.col_project_text p {
5352
background-color: white;
54-
text-align: justify;
53+
text-align: center;
5554
}
5655

5756
.project_picture_jupyter {
@@ -96,7 +95,7 @@ div .project_title {
9695
}
9796

9897
.header_text p {
99-
text-align: center;
98+
text-align: justify;
10099
}
101100

102101
.project_text {

src/css/custom.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,10 @@ ul {
9494
padding-left: 0;
9595
}
9696

97+
ul.row {
98+
padding-left: 0;
99+
}
100+
97101
.container {
98102
max-width: none;
99103
padding: 0;
@@ -216,7 +220,7 @@ ul {
216220

217221
li {
218222
font-size: 14px;
219-
margin-left: 24px;
223+
margin-left: 14px;
220224
}
221225

222226
.blue-banner-container {
@@ -637,10 +641,11 @@ a.menu__link:active {
637641
.cards-list {
638642
list-style-type: none;
639643
padding: none;
644+
margin-left: 0;
640645
}
641646

642647
.projects-list {
643648
list-style-type: none;
644649
padding: none;
645650
width: 100%;
646-
}
651+
}
Loading

0 commit comments

Comments
 (0)