Skip to content

Commit 39ab0f5

Browse files
HaudinFlorenceSylvainCorlay
authored andcommitted
Try to fix issue with the Hero directory.
Update the carousel with the logos. Fix some style issues.
1 parent 44045e4 commit 39ab0f5

File tree

14 files changed

+180
-395
lines changed

14 files changed

+180
-395
lines changed

src/components/about/FourValues.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ export function FourValuesDesktop() {
9999
<div className={styles.four_values_container}>
100100
<div className="row">
101101
<div className="col">
102-
<h1 className="padding-none">Our values </h1>
102+
<h1 className={"padding-none" + " "+ "full-flex-centered"}>Our values </h1>
103103
</div>
104104
</div>
105105
<ul
106-
className={"row" + " " + "padding-none" + " " + styles.row_with_margins}
106+
className={"row" + " " + "padding-none" + " " + styles.row_with_margins+" "+ "flex-full-centered"}
107107
>
108108
{valuesNames.map((value, index) => (
109109
<li className="cards-list" key={index}>

src/components/about/SubTeam.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function SubTeamDesktop({
1515
<div className={"container" + " " + styles.subteam_container}>
1616
<ul
1717
className={
18-
"row" + " " + "padding-none" + " " + styles.row_with_margins
18+
"row" + " " + "padding-none" + " " + styles.row_with_margins+ " "+ "flex-full-centered"
1919
}
2020
>
2121
{subTeam.map((person, index) => (

src/components/blog/Hero/customersLogos.ts

Lines changed: 0 additions & 70 deletions
This file was deleted.

src/components/blog/Hero/index.tsx

Lines changed: 0 additions & 129 deletions
This file was deleted.

src/components/blog/Hero/styles.module.css

Lines changed: 0 additions & 59 deletions
This file was deleted.

src/components/home/AboutQS/styles.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
margin-top: var(--ifm-spacing-2xl);
33
background-color: var(--ifm-background-color-about-qs-banner);
44
}
5+
56
div .text_container {
67
color: var(--ifm-text-color-about-qs-banner);
78
}

src/components/home/Hero/LogosTable.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,11 @@ export function SimpleSliderLight() {
4747
let settings = {
4848
dots: true,
4949
infinite: true,
50-
speed: 1000,
50+
speed: 800,
5151
slidesToShow: 1,
5252
slidesToScroll: 1,
53+
arrows: false,
54+
autoplay: true
5355
};
5456
return (
5557
<Slider {...settings}>
@@ -70,9 +72,11 @@ export function SimpleSliderDark() {
7072
let settings = {
7173
dots: true,
7274
infinite: true,
73-
speed: 1000,
75+
speed: 800,
7476
slidesToShow: 1,
7577
slidesToScroll: 1,
78+
arrows: false,
79+
autoplay: true
7680
};
7781
return (
7882
<Slider {...settings}>

0 commit comments

Comments
 (0)