diff --git a/.gitignore b/.gitignore
index a12bfb1..c1a09ec 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,6 +4,9 @@
/node_modules
/.pnp
.pnp.js
+.cache
+dist
+package-lock.json
yarn.lock
# testing
diff --git a/src/App.tsx b/src/App.tsx
index a1a3e90..07f0ee3 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,12 +1,11 @@
import { BrowserRouter as Router, Route, Routes } from 'react-router-dom';
+
import About from './views/About/About';
import Header from './components/Header';
import Home from './views/Home/Home';
import Gaming from './views/Gaming/Gaming';
import Esports from './views/Esports/Esports';
import Technology from './views/Technology/Technology';
-
-
function App() {
return (
@@ -21,6 +20,7 @@ function App() {
} />
+
>
);
}
diff --git a/src/components/Footer.module.css b/src/components/Footer.module.css
new file mode 100644
index 0000000..674021b
--- /dev/null
+++ b/src/components/Footer.module.css
@@ -0,0 +1,35 @@
+footer {
+ margin: 0 auto;
+ box-sizing: border-box;
+ padding: 2em;
+
+}
+
+.footer_links {
+ margin: 1em auto 0 auto;
+ max-width: 800px;
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-evenly;
+}
+
+.footer_links a {
+ margin: auto 2em;
+ padding: 1em;
+}
+
+.footer_links img {
+ width: 2em;
+ height: 2em;
+}
+
+iframe {
+ display: block;
+ margin: 2em auto;
+}
+
+.logo {
+ display: block;
+ margin: 0 auto;
+ max-width: 90%;
+}
\ No newline at end of file
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
new file mode 100644
index 0000000..b09f24a
--- /dev/null
+++ b/src/components/Footer.tsx
@@ -0,0 +1,45 @@
+import styles from './Footer.module.css'
+
+const Footer = (): JSX.Element => {
+
+ const footer_links: { icon?: string, url: string, description: string }[] = [
+ {
+ icon: "/img/discord.svg",
+ url: "https://discord.netsoc.co",
+ description: "Join our Discord server"
+ },
+ {
+ icon: "/img/google_calendar.png",
+ url: "https://google.com",
+ description: "See what events we have coming up"
+ },
+ {
+ icon: "https://instagram.com/favicon.ico",
+ url: "https://instagram.com/uccnetsoc",
+ description: "Follow us on instagram to be updated with upcoming events"
+ },
+ {
+ icon: "/img/github.svg",
+ url: "https://github.com/uccnetsoc",
+ description: "Check out our Github"
+ },
+ ]
+
+ return (
+ <>
+
+ >
+ )
+};
+
+export default Footer;