forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.tsx
More file actions
62 lines (59 loc) · 1.93 KB
/
index.tsx
File metadata and controls
62 lines (59 loc) · 1.93 KB
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
import styles from "./styles.module.css";
import SimpleSlider from "./LogosTableBy8";
import Astronaut from "/img/quantstack/astronaut.svg";
import Banner from "./Banner";
export function Hero() {
return (
<div className={styles.hero_container}>
<Banner/>
<div className={styles.banner_image}>
</div>
<div className="main-container-with-margins">
<div>
<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--12 col">
<div className={styles.worked_with}> We have worked with </div>
</div>
</div>
<div className="row" >
<div className="col col--12" style={{display:"flex", justifyContent: "center"}}>
<SimpleSlider />
</div>
</div>
</div>
</div>
</div>
);
}
export default Hero;