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.
22 lines
589 B
22 lines
589 B
import Link from "next/link";
|
|
import React from "react";
|
|
|
|
import { SocialLinks } from "./SocialLinks";
|
|
|
|
import styles from "./Footer.module.css";
|
|
|
|
export function Footer() {
|
|
return (
|
|
<footer className={styles.footer}>
|
|
<div className={styles.container}>
|
|
<div className={styles.text}>
|
|
Have questions? Email us at{" "}
|
|
<Link href="mailto:exec@csclub.uwaterloo.ca">
|
|
<a className={styles.email}>exec@csclub.uwaterloo.ca</a>
|
|
</Link>
|
|
</div>
|
|
<SocialLinks color="white" size="small" />
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|
|
|