forked from www/www-new
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
980 B
35 lines
980 B
import React from "react";
|
|
|
|
import { ConnectWithUs } from "@/components/ConnectWithUs";
|
|
import { EmailSignup } from "@/components/EmailSignup";
|
|
import { Image } from "@/components/Image";
|
|
|
|
import Content from "../content/get-involved.mdx";
|
|
|
|
import styles from "./get-involved.module.css";
|
|
|
|
export default function GetInvolved() {
|
|
return (
|
|
<div className={styles.page}>
|
|
<header>
|
|
<div className={styles.headerText}>
|
|
<h1>Get Involved!</h1>
|
|
<p>
|
|
If you’re interested in helping out with CS Club, don’t 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>
|
|
);
|
|
}
|
|
|