www-new/components/ConnectWithUs.tsx

22 lines
714 B
TypeScript

import React from "react";
import styles from "./ConnectWithUs.module.css";
import { SocialLinks } from "./SocialLinks";
import { Link } from "./Link";
export function ConnectWithUs() {
return (
<div>
<h2 className={styles.header}>Connect with us!</h2>
<div className={styles.text}>
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!
<div className={styles.socialLinks}>
<SocialLinks color="gradient" size="big" />
</div>
{/* TODO: fix feedback form link */}
Send feedback through our <Link href="#">Feedback Form</Link>
</div>
</div>
);
}