forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFanny.tsx
More file actions
39 lines (38 loc) · 1.29 KB
/
Fanny.tsx
File metadata and controls
39 lines (38 loc) · 1.29 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
import Fanny from "@site/src/components/about/Team/Fanny.md";
import styles from "@site/src/components/about/styles.module.css";
import FannyAvatarUrl from "@site/static/img/avatars/Fanny.png";
import Layout from "@theme/Layout";
import Footer from "@site/src/components/footer/Footer";
export default function FannyComponent() {
return (
<Layout>
<div className="flex-full-centered">
<div className={styles.large_portrait_card}>
<div className={"container"}>
<div
className="row"
style={{ marginBottom: "var(--ifm-spacing-lg)" }}
>
<div className="col col--10 col--offset-1">
<div className="flex-full-centered">
<div className={styles.avatar}>
<img src={FannyAvatarUrl} alt={"Fanny Loustau-Chartez."} />
</div>
</div>
<div className="spacing-2xl"></div>
<p style={{ textAlign: "center" }}>
<b>In memoriam: Fanny Loustau-Chartez - 1983 - 2024</b>
</p>
<Fanny />
<p>
May 16, 2024
</p>
</div>
</div>
</div>
</div>
</div>
<Footer />
</Layout>
);
}