forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFooter.tsx
108 lines (101 loc) · 3.41 KB
/
Footer.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
97
98
99
100
101
102
103
104
105
106
107
108
import Link from "@docusaurus/Link";
import styles from "./styles.module.css";
import GHPicture from "@site/static/img/socialmedias/GH.svg";
import LinkedInPicture from "@site/static/img/socialmedias/LinkedIn.svg";
import BlueskyPicture from "@site/static/img/socialmedias/Bluesky.svg";
import MastodonPicture from "@site/static/img/socialmedias/Mastodon.svg"
export function SocialMediasQuantStack() {
return (
<div>
<b>Follow us on</b> <br />
<div style={{marginBottom: "var(--ifm-spacing-lg)"}}>
<Link href={"https://github.com/QuantStack"}>{<GHPicture />}</Link>
<Link href={"https://www.linkedin.com/company/quantstack/mycompany"}>
{<LinkedInPicture />}
</Link>
<Link href={"https://bsky.app/profile/quantstack.bsky.social"}>{<BlueskyPicture />}</Link>
<Link href={"https://mastodon.social/@QuantStack "}>{<MastodonPicture />}</Link>
</div>
</div>
);
}
export default function Footer() {
return (
<div className={"container" + " " + styles.footer_container}>
<div className={"row"} style={{ paddingBottom: "var(--ifm-spacing-xl)" }}>
<div
className={
"col flex-horizontally-centered" + " " + styles.col_social_media_desktop
}
>
<SocialMediasQuantStack />
</div>
<div className={"col flex-horizontally-centered"}>
<div className={"container" + " " + styles.menu_container}>
<div style={{ textAlign: "center" }}>
<b>Menu</b> <br />
</div>
<div className="row">
<div className="col flex-horizontally-centered">
<ul>
<li>
<Link href={"/home"}>Home</Link>
</li>
<li>
<Link href={"/projects"}>Projects</Link>
</li>
<li>
<Link href={"/about"}>About us</Link>
</li>
</ul>
</div>
<div className="col flex-horizontally-centered">
<ul>
<li>
<Link href={"/services"}>Services</Link>
</li>
<li>
<Link href={"/careers"}>Careers</Link>
</li>
<li>
<Link href={"/blog"}>Blog</Link>
</li>
</ul>
</div>
</div>
</div>
</div>
<div
className={
"col flex-full-centered" + " " + styles.col_address_desktop
}
>
<div>
<div>
<b>QuantStack office</b> <br />
16, avenue Curti <br />
94100 Saint-Maur-des-Fossés <br />
France
</div>
</div>
</div>
<div className={"col" + " " + styles.col_social_media_and_address_mobile}>
<SocialMediasQuantStack />
<div>
<div>
<b>QuantStack office</b> <br />
16, avenue Curti <br />
94100 Saint-Maur-des-Fossés <br />
France
</div>
</div>
</div>
</div>
<div className={"row flex-full-centered"}>
<div className={styles.copyright_container}>
Copyright © 2024 · QuantStack website · Built with Docusaurus
</div>
</div>
</div>
);
}