forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
33 lines (32 loc) · 976 Bytes
/
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
import styles from "./styles.module.css";
import ContactForm from "./ContactForm";
import { useEffect, useState } from "react";
import ContactIllustration from "/img/illustrations/contact.svg";
export function Contact() {
return (
<div className="container upper-container-with-margin-top">
<h1 className={"padding-none text--center"}> Contact us</h1>
<div className={"row"}>
<div
className="col col--5 col--offset-1 flex-full-centered"
style={{
padding: "var(--ifm-spacing-xl)",
}}
>
<ContactIllustration
height={"460px"}
alt={
"Illustration for the contact page with a woman, a mobile phone and an envelope."
}
/>
</div>
<div
className={"col col--5 flex-full-centered padding-none margin-none"}
>
<ContactForm />
</div>
</div>
</div>
);
}
export default Contact;