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"; 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!

); } AboutUs.Layout = function AboutUsLayout(props: { children: React.ReactNode }) { return
{props.children}
; };