From e64aad47a1699f77ebc285e79e1f1123d4989b04 Mon Sep 17 00:00:00 2001 From: HaudinFlorence Date: Thu, 24 Oct 2024 11:09:38 +0200 Subject: [PATCH 1/4] Fix list presentation in the Scientific computing section of the projects overview. --- .../home/ProjectsOverview/descriptions/Computing.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/home/ProjectsOverview/descriptions/Computing.md b/src/components/home/ProjectsOverview/descriptions/Computing.md index d61aab1df..a5d453c99 100644 --- a/src/components/home/ProjectsOverview/descriptions/Computing.md +++ b/src/components/home/ProjectsOverview/descriptions/Computing.md @@ -1,5 +1,5 @@ -QuantStack is the main organization supporting the development of several C++ scientific computing packages such as +QuantStack is the main organization supporting the development of several C++ scientific computing packages such as: -Xsimd, a unified API for SIMD operations, used by projects such as Apache Arrow, Firefox, Krita, Pythran, and naturally, xtensor. +- Xsimd, a unified API for SIMD operations, used by projects such as Apache Arrow, Firefox, Krita, Pythran, and naturally, xtensor. -Xtensor, a multi-dimensional array library in C++, supporting NumPy-style API and features, such as universal functions and broadcasting, while being lazy-evaluated. Language bindings for Python, R, and Julia are also available. \ No newline at end of file +- Xtensor, a multi-dimensional array library in C++, supporting NumPy-style API and features, such as universal functions and broadcasting, while being lazy-evaluated. Language bindings for Python, R, and Julia are also available. \ No newline at end of file From 1a1c88597d20f6556edeb67e0218f96bdfe9b63b Mon Sep 17 00:00:00 2001 From: HaudinFlorence Date: Thu, 24 Oct 2024 11:13:04 +0200 Subject: [PATCH 2/4] Update the name of the picture related to the iopenlayers blog to fit the pattern name fitting with the title of the blogpost. --- src/components/blog/blogpostsDetails.json | 2 +- ...g => Interactive-Mapping-with-ipyopenlayers.png} | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename static/img/blogposts/{IPyopenlayers.png => Interactive-Mapping-with-ipyopenlayers.png} (100%) diff --git a/src/components/blog/blogpostsDetails.json b/src/components/blog/blogpostsDetails.json index 55efb8954..9a4df99fb 100644 --- a/src/components/blog/blogpostsDetails.json +++ b/src/components/blog/blogpostsDetails.json @@ -14,7 +14,7 @@ { "url": "https://blog.jupyter.org/interactive-mapping-with-ipyopenlayers-2b8bc93bb6c4", "title": "Interactive Mapping with ipyopenlayers", - "image": "/img/blogposts/IPyopenlayers.png", + "image": "/img/blogposts/Interactive-Mapping-with-ipyopenlayers.png", "summary": " In this article, we present the main features of ipyopenlayers and demonstrate how this library can transform your geospatial data into dynamic, interactive visualizations.", "date": "September 6, 2024", "authors": "Nour Cheour", diff --git a/static/img/blogposts/IPyopenlayers.png b/static/img/blogposts/Interactive-Mapping-with-ipyopenlayers.png similarity index 100% rename from static/img/blogposts/IPyopenlayers.png rename to static/img/blogposts/Interactive-Mapping-with-ipyopenlayers.png From d10b612f7cb511be07b63f670ac3edc26bcfaf1f Mon Sep 17 00:00:00 2001 From: HaudinFlorence Date: Thu, 24 Oct 2024 11:23:11 +0200 Subject: [PATCH 3/4] Add the link to the Apache Arrow announcement in the project description. --- src/components/projects/descriptions/ApacheArrow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/projects/descriptions/ApacheArrow.md b/src/components/projects/descriptions/ApacheArrow.md index 9f9361654..58e149a59 100644 --- a/src/components/projects/descriptions/ApacheArrow.md +++ b/src/components/projects/descriptions/ApacheArrow.md @@ -1,3 +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 announcement on the launch of the Apache Arrow team at QuantStack. +Check out our recent [announcement](https://medium.com/@QuantStack/quantstack-steps-up-to-support-apache-arrow-with-new-dedicated-team-9ddc952f20e2) on the launch of the Apache Arrow team at QuantStack. From 7292bc1a9eba55512726a29c84073ab21e226dbf Mon Sep 17 00:00:00 2001 From: HaudinFlorence Date: Thu, 24 Oct 2024 17:10:02 +0200 Subject: [PATCH 4/4] Fix styles padding and margin issues, add a background color on topics cards. --- .../home/ProjectsOverview/styles.module.css | 5 --- src/components/home/WhatWeDo/Topics.tsx | 10 +++--- src/components/home/WhatWeDo/index.tsx | 31 +++++++------------ .../home/WhatWeDo/styles.module.css | 8 ++--- src/components/home/styles.module.css | 1 - src/css/custom.css | 21 ++++++++----- 6 files changed, 33 insertions(+), 43 deletions(-) diff --git a/src/components/home/ProjectsOverview/styles.module.css b/src/components/home/ProjectsOverview/styles.module.css index 305c9a6eb..3beb16147 100644 --- a/src/components/home/ProjectsOverview/styles.module.css +++ b/src/components/home/ProjectsOverview/styles.module.css @@ -4,10 +4,6 @@ } } -.project_desktop { - margin-bottom: var(--ifm-spacing-3xl); -} - .h2_custom { color: var(--ifm-color-blue-jupyter); } @@ -16,7 +12,6 @@ padding: var(--ifm-spacing-4xl) var(--ifm-spacing-3xl); } - .project_yellow { background-color: var(--ifm-color-primary-p1); } diff --git a/src/components/home/WhatWeDo/Topics.tsx b/src/components/home/WhatWeDo/Topics.tsx index 4c1e8e8a4..16478e2c0 100644 --- a/src/components/home/WhatWeDo/Topics.tsx +++ b/src/components/home/WhatWeDo/Topics.tsx @@ -13,12 +13,10 @@ export function Topics() {
    {topicsDetails.map((topics, index) => (
  • -
    - -
    +
  • ))}
diff --git a/src/components/home/WhatWeDo/index.tsx b/src/components/home/WhatWeDo/index.tsx index 29a1e1db6..c1b9e02e9 100644 --- a/src/components/home/WhatWeDo/index.tsx +++ b/src/components/home/WhatWeDo/index.tsx @@ -5,29 +5,20 @@ import LinkToProjects from "../LinkToProjects"; export function WhatWeDo() { return ( -
-
-
-
- -
+
+
+
+
-
-
-

What we do

-
+
+

What we do

+
-
-
- -
-
-
-
-
- -
+
+
+ +
diff --git a/src/components/home/WhatWeDo/styles.module.css b/src/components/home/WhatWeDo/styles.module.css index 23ad23366..228d2cdb4 100644 --- a/src/components/home/WhatWeDo/styles.module.css +++ b/src/components/home/WhatWeDo/styles.module.css @@ -18,7 +18,6 @@ div .topics_header { display: none; } - .whatwedo_container { /*background-color: var(--ifm-color-primary-p1);*/ padding: 0; @@ -26,13 +25,14 @@ div .topics_header { } .topics_card { - width: 100%; - padding: var(--ifm-spacing-lg) var(--ifm-spacing-lg); + width: 80%; text-align: justify; + background-color: var(--ifm-color-primary-p0); + margin: var(--ifm-spacing-lg) auto var(--ifm-spacing-lg) auto ; } .topics_card .p { - padding: var(--ifm-spacing-lg) var(--ifm-spacing-lg); + padding: var(--ifm-spacing-xs) var(--ifm-spacing-xs); } diff --git a/src/components/home/styles.module.css b/src/components/home/styles.module.css index 0021a9d68..54c987305 100644 --- a/src/components/home/styles.module.css +++ b/src/components/home/styles.module.css @@ -15,7 +15,6 @@ font-weight: 700; } - .link_to_about_us { background-color: var(--ifm-color-primary-p1); color: var(--ifm-text-color-on-primary-p1); diff --git a/src/css/custom.css b/src/css/custom.css index 52f560614..c062b2bb8 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -92,7 +92,7 @@ ul { padding-left: 0; - margin-left:0; + margin-left: 0; } .container { @@ -183,6 +183,9 @@ ul { .row-with-margins { margin: var(--ifm-spacing-xl) 0; } + .col { + padding: 0; + } h1 { color: var(--ifm-text-color-main-title); @@ -212,7 +215,7 @@ ul { line-height: 150%; line-height: 20px; letter-spacing: 0.25px; - padding: 0 var(--ifm-spacing-lg) + padding: 0 var(--ifm-spacing-lg); } li { @@ -298,7 +301,6 @@ ul { margin: var(--ifm-spacing-2xl) 0; } - h1 { color: var(--ifm-color-primary-p2); font-family: var(--ifm-font-family-bebas-neue); @@ -638,13 +640,18 @@ a.menu__link:active { .cards-list { list-style-type: none; - padding: none; - margin-left: 0; + padding: 0; + margin: 0; +} + +ul.row { + margin: 0; + padding: 0; } .projects-list { list-style-type: none; padding: none; - margin-left:0; + margin-left: 0; width: 100%; -} \ No newline at end of file +}