www-new/pages/get-involved.tsx

45 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from "react";
import { Image } from "../components/Image";
import { Link } from "../components/Link";
import { ConnectWithUs } from "../components/ConnectWithUs";
import { EmailSignup } from "../components/EmailSignup";
import Content from "../content/get-involved.mdx";
import styles from "./get-involved.module.css";
/**
* @todo fix codey image with svg
*/
export default function GetInvolved() {
return (
<div className={styles.pageContainer}>
<div className={styles.headerContainer}>
<Image
src="images/get-involved/codey-mobile.svg"
className={styles.codeyMobile}
/>
<div className={styles.headerText}>
<h1>Get Involved!</h1>
<p>
If youre interested in holding, planning, or helping out with an
event, dont hesitate to get in touch with the{" "}
<Link href="/about/team">Programme Committee</Link>!
</p>
</div>
<Image
src="images/get-involved/codey-desktop.svg"
className={styles.codeyDesktop}
/>
</div>
<main className={styles.content}>
<Content />
</main>
<div className={styles.connectWithUs}>
<ConnectWithUs />
</div>
<div className={styles.emailSignup}>
<EmailSignup />
</div>
</div>
);
}