forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.tsx
96 lines (93 loc) · 3.08 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import styles from "./styles.module.css";
import SimpleSlider from "./LogosTableBy8";
import Astronaut from "/img/quantstack/astronaut.svg";
import CiteDesSciencesUrl from "@site/static/img/quantstack/geode-cropped-with-white-rectangle.png";
import LogoPyDataParisUrl from "@site/static/img/quantstack/PyData_logo.png";
import Link from "@docusaurus/Link";
export function PydataParis() {
return (
<div className={styles.pydata_banner}>
<Link href={"https://pydata.org/paris2024"}>
<img
className={styles.pydata_image}
src={CiteDesSciencesUrl}
alt={"Banner to promote Pydata Paris."}
width={"100%"}
/>
</Link>
<Link href={"https://pydata.org/paris2024"}>
<p className={styles.pydata_header}>
Join QuantStack at PyData Paris
</p>
</Link>
<Link href={"https://pydata.org/paris2024"}>
<div className={styles.pydata_logo_container}>
<img
className={styles.pydata_logo}
src={LogoPyDataParisUrl}
alt={"Logo of PyData Paris Conference."}
/>
</div>
</Link>
<p className={styles.pydata_informations}>
September 25-26 2024
<br />
Cité des Sciences, Paris, France
<br />
</p>
</div>
);
}
export function Hero() {
return (
<div className={styles.hero_container}>
<PydataParis />
<div className="main-container-with-margins">
<div className="container upper-container-with-margin-top">
<div className={"row row--no-gutters flex-full-centered"}>
<div className="col col--6 col--offset-1">
<h1 className="padding-none">
Open-source for discovery, science, and education
</h1>
<p className={styles.subheader}>
A team behind major open-source projects of the scientific
computing ecosystem
</p>
<h2 className={styles.h2_custom}>
Jupyter, Conda-forge, Mamba, Voilà, Xtensor and more.
</h2>
</div>
<div
className={
"col col--3 col--offset-1 flex-full-centered" +
" " +
styles.astronaut_column
}
>
<Astronaut
alt={"Astronaut mascot of QuantStack"}
width={"300px"}
height={"300px"}
/>
</div>
</div>
</div>
</div>
<div className="main-container-with-margins">
<div className={"container" + " " + styles.logos_carousel}>
<div className="row">
<div className="col col--10 col--offset-1">
<div className={styles.worked_with}> We have worked with </div>
</div>
</div>
<div className="row">
<div className="col col--10 col--offset-1">
<SimpleSlider />
</div>
</div>
</div>
</div>
</div>
);
}
export default Hero;