diff --git a/src/components/Footer.js b/src/components/Footer.js index 6c261a9..70040a4 100644 --- a/src/components/Footer.js +++ b/src/components/Footer.js @@ -1,7 +1,64 @@ import React from "react"; +import logo from "@/public/assets/FooterLogo.svg"; +import Image from "next/image"; +import Link from "next/link"; + +import { + FaInstagram, + FaDiscord, + FaYoutube, + FaSlack, + FaEnvelope, + FaMediumM, +} from "react-icons/fa"; const Footer = () => { - return
Footer
; + return ( +
+
+ +
+
+
+
+ contact us! +
+
+ Winston Chung Hall, 446 N Campus Dr,
Riverside, CA 92507 +
+
+ 714-749-5576 +
+
+
+
+ + + + + + + + + +
+
+ + + + + + + + + +
+
+
+
+ ); }; - export default Footer;