www-new/pages/get-involved.tsx

38 lines
1.0 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 { ConnectWithUs } from "@/components/ConnectWithUs";
import { EmailSignup } from "@/components/EmailSignup";
import { Image } from "@/components/Image";
import { Title } from "@/components/Title";
import Content from "../content/get-involved.mdx";
import styles from "./get-involved.module.css";
export default function GetInvolved() {
return (
<div className={styles.page}>
<Title>Get Involved</Title>
<header>
<div className={styles.headerText}>
<h1>Get Involved!</h1>
<p>
If youre interested in helping out with CS Club, dont hesitate to
get in touch with us!
</p>
</div>
<Image src="images/get-involved/codey.svg" className={styles.codey} />
</header>
<main className={styles.content}>
<Content />
</main>
<div className={styles.connectWithUs}>
<ConnectWithUs />
</div>
<div className={styles.emailSignup}>
<EmailSignup />
</div>
</div>
);
}