diff --git a/README.md b/README.md
index 444baa4f..2bac072f 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,7 @@ DUCI-website
│ ├── alumniBoard.json
│ ├── currentBoard.json
│ ├── merchList.json
-│ ├── resources.json
+│ ├── resources.ts
│ └── socials.json
├── .gitignore
├── package.json
@@ -62,7 +62,7 @@ DUCI-website
| alumniBoard.json | information of all alumni board members | `src/app/pages/About` |
| currentBoard.json | information of all current board members | `src/app/pages/About` |
| merchList.json | list of all historical merch data (currently only has stickers) | `src/app/pages/Merch` |
-| resources.json | all design resources for club members | `src/app/pages/Resources`, `src/app/pages/ResourcesFeatured` |
+| resources.ts | all design resources for club members | `src/app/pages/Resources`, `src/app/pages/ResourcesFeatured` |
| socials.json | social media links for DUCI | `src/app/pages/Contact`, `src/app/components/Nav`, `src/app/components/Footer` |
| short_socials.json | full social media icon-links for DUCI | `src/app/pages/Join`, `src/app/pages/Hey` |
@@ -117,14 +117,14 @@ An example is the list of board members that gets displayed in the `About` page.
### Suspense
-Currently, the final build size is about 50kb which isn't nearly big enough to warrant implementing Suspense for every page but probably will have plans to do so since the infrastucture is there.
+Currently, the final build size is about 50kb which isn't nearly big enough to warrant implementing Suspense for every page but probably will have plans to do so since the infrastructure is there.
### Immediate improvements to be made
-- i18n?
-- a11y - mouse hover interaction (fields - text, buttons - pointer), semantic html (text component for example should be switched to various h tags)
-- pagination for events list
-- A lot of styling still needs to be refactored
+- i18n?
+- a11y - mouse hover interaction (fields - text, buttons - pointer), semantic html (text component for example should be switched to various h tags)
+- pagination for events list
+- A lot of styling still needs to be refactored
### Later planned updates:
diff --git a/src/app/App.js b/src/app/App.js
index f5f06cb5..7bbf277e 100644
--- a/src/app/App.js
+++ b/src/app/App.js
@@ -1,6 +1,6 @@
import { Route, Routes, Navigate } from "react-router-dom";
-import { Banner, Footer, Nav } from "./components";
+import { Footer, Nav } from "./components";
import { useScroll } from "./controllers";
import {
About,
@@ -38,7 +38,6 @@ function App() {
return (
<>
- } />
diff --git a/src/app/components/Footer/Footer.js b/src/app/components/Footer/Footer.js
index baaa87eb..2934e2af 100644
--- a/src/app/components/Footer/Footer.js
+++ b/src/app/components/Footer/Footer.js
@@ -27,7 +27,9 @@ const Footer = () => (
src={icons.default}
style={{ marginRight: "16px" }}
/>
- {name}
+
+ {name}
+
))}
@@ -51,26 +53,11 @@ const Footer = () => (
Project Teams
-