Skip to content

Commit d010cb4

Browse files
Keep on working on style and css classes. Add svg pictures for the mobile menu.
1 parent 1441977 commit d010cb4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+512
-610
lines changed

src/components/about/Avatar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default function Avatar({ person }) {
1111
height={"160px"}
1212
alt={
1313
"Avatar of " +
14-
person.CompleteName +
14+
person.completeName +
1515
"working at QuantStack as a " +
1616
person.position
1717
}

src/components/about/FourValues.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { valuesDetails } from "./Values/valuesDetails";
44

55
export default function FourValues() {
66
return (
7-
<div className={styles.four_values_container}>
7+
<div className="upper-container-with-margin-top">
88
<div className="row">
99
<div className="col">
1010
<h1 className={"padding-none" + " " + "full-flex-centered"}>

src/components/about/LargePortraitCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default function LargePortraitCard({ person, avatarUrl, BioComponent }) {
4949
className={styles.avatar}
5050
alt={
5151
"Avatar of " +
52-
person.CompleteName +
52+
person.completeName +
5353
"working at QuantStack as a " +
5454
person.position
5555
}

src/components/about/SmallPortraitCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export function SmallPortraitCard({ person, avatarUrl, setOffsets }) {
5656
height={"160px"}
5757
alt={
5858
"Avatar of " +
59-
person.CompleteName +
59+
person.completeName +
6060
"working at QuantStack as a " +
6161
person.position
6262
}

src/components/about/SubTeam.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import styles from "./styles.module.css";
2-
import Link from "@docusaurus/Link";
32
import PopupPortrait from "./SmallPortraitCard";
43

54
export default function SubTeam ({

src/components/about/index.tsx

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,11 @@ import FourValues from "./FourValues";
1414
import SubTeam from "./SubTeam";
1515
import LinkToContact from "../home/LinkToContact";
1616

17-
1817
export function About() {
1918
return (
2019
<div>
2120
<div className="main-container-with-margins">
22-
<div className={"container" + " " + styles.about_container}>
21+
<div className="container upper-container-with-margin-top">
2322
<div className={"row"}>
2423
<div className={"col" + " " + "flex-full-centered"}>
2524
<FourValues />
@@ -59,24 +58,10 @@ export function About() {
5958
</div>
6059
</div>
6160
</div>
62-
<div className={styles.join_the_team_container}>
63-
<h1
64-
className={
65-
"text--center" +
66-
" " +
67-
"padding-none" +
68-
" " +
69-
"h1-margin-none" +
70-
" " +
71-
styles.join_the_team_title
72-
}
73-
>
74-
Join the team
75-
</h1>
76-
<div className={styles.join_the_team_text}>
77-
QuantStack is seeking talents in the open-source scientific computing
78-
community. Join a team committed to open-science and free software.
79-
</div>
61+
<div className="blue-banner-container">
62+
<div className="blue-banner-header">Join the team</div>
63+
QuantStack is seeking talents in the open-source scientific computing
64+
community. Join a team committed to open-science and free software.
8065
<LinkToContact label={"JOIN THE TEAM!"} />
8166
</div>
8267
</div>

src/components/about/styles.module.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,6 @@ div .row {
6060
margin-right: 0;
6161
}
6262

63-
.about_container {
64-
margin-top: var(--ifm-spacing-6xl);
65-
}
66-
6763
.value_card {
6864
height: 540px;
6965
width: 264px;

src/components/blog/styles.module.css

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,4 @@ div .blogpost_date {
9090
var(--ifm-spacing-lg);
9191
}
9292

93-
.blogposts_container {
94-
margin: var(--ifm-spacing-6xl) 0;
95-
}
93+

src/components/careers/Header.tsx

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +0,0 @@
1-
import styles from "./styles.module.css";
2-
import GroupPhotoJupyterConUrl from "@site/static/img/group/group-photo.png";
3-
4-
export default function Header() {
5-
return (
6-
<div className={styles.careers_header}>
7-
<h1 className="text--center">Join the QuantStack team!</h1>
8-
<div className={styles.group_photo_container + " " + "flex-full-centered"}>
9-
<img src={GroupPhotoJupyterConUrl} alt={"Picture showing QuantStack people gathered at the Jupytercon in Paris in May 2023."}/>
10-
</div>
11-
</div>
12-
);
13-
}
14-

src/components/careers/InterviewPicture.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default function InterviewPicture({ person }) {
99
src={person.pictureRoute}
1010
alt={
1111
"Picture of" +
12-
person.CompleteName +
12+
person.completeName +
1313
"working at QuantStack as a" +
1414
person.position
1515
}

0 commit comments

Comments
 (0)