|
|
|
@ -2,8 +2,9 @@ import React from "react"; |
|
|
|
|
import { Image } from "../../components/Image"; |
|
|
|
|
import Content from "../../content/about/index.mdx"; |
|
|
|
|
import styles from "./index.module.css"; |
|
|
|
|
import { Button } from "../../components/Button"; |
|
|
|
|
import { SocialLinks } from "../../components/SocialLinks"; |
|
|
|
|
import { ConnectWithUs } from "components/ConnectWithUs"; |
|
|
|
|
import { EmailSignup } from "components/EmailSignup"; |
|
|
|
|
import { DefaultLayout } from "components/DefaultLayout"; |
|
|
|
|
|
|
|
|
|
export default function AboutUs() { |
|
|
|
|
return ( |
|
|
|
@ -15,29 +16,14 @@ export default function AboutUs() { |
|
|
|
|
<div className={styles.content}> |
|
|
|
|
<Content /> |
|
|
|
|
</div> |
|
|
|
|
<div className={styles.mailingList}> |
|
|
|
|
<h2>Connect with us!</h2> |
|
|
|
|
<p> |
|
|
|
|
Drop by any of our social media outlets to learn more about us, keep |
|
|
|
|
up-to-date with our upcoming events, or to chat with our members! |
|
|
|
|
</p> |
|
|
|
|
<SocialLinks color="gradient" size="big" /> |
|
|
|
|
<p>Send feedback through our Feedback Form </p> |
|
|
|
|
<h2>Join our Mailing List!</h2> |
|
|
|
|
<form action=""> |
|
|
|
|
<div> |
|
|
|
|
<input type="text" placeholder="Full Name*" required /> |
|
|
|
|
</div> |
|
|
|
|
<div> |
|
|
|
|
<input type="text" placeholder="Email*" required /> |
|
|
|
|
</div> |
|
|
|
|
<Button>Subscribe</Button> |
|
|
|
|
</form> |
|
|
|
|
</div> |
|
|
|
|
<DefaultLayout> |
|
|
|
|
<ConnectWithUs /> |
|
|
|
|
<EmailSignup /> |
|
|
|
|
</DefaultLayout> |
|
|
|
|
</> |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
AboutUs.Layout = function AboutUsLayout(props: { children: React.ReactNode }) { |
|
|
|
|
return <div>{props.children}</div>; |
|
|
|
|
return <div className={styles.page}>{props.children}</div>; |
|
|
|
|
}; |
|
|
|
|