import React, { HTMLAttributes } from "react"; import { MDXProvider } from "@mdx-js/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"; export default function AboutUs() { return (

About Us!

Connect with us!

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!

Send feedback through our Feedback Form

Join our Mailing List!

); } /*to be replaced by css rules in about-us.module.css*/ function H2(props: HTMLAttributes) { return

; } function Text(props: HTMLAttributes) { return

; } function Div(props: HTMLAttributes) { return

; }