diff --git a/client/public/assets/developers/Chloe Wu.JPG b/client/public/assets/developers/Chloe Wu.JPG new file mode 100644 index 0000000..646719b Binary files /dev/null and b/client/public/assets/developers/Chloe Wu.JPG differ diff --git a/client/public/assets/developers/David Sadka.png b/client/public/assets/developers/David Sadka.png new file mode 100644 index 0000000..c67d395 Binary files /dev/null and b/client/public/assets/developers/David Sadka.png differ diff --git a/client/public/assets/developers/Peter Yu.png b/client/public/assets/developers/Peter Yu.png new file mode 100644 index 0000000..d6b7b1c Binary files /dev/null and b/client/public/assets/developers/Peter Yu.png differ diff --git a/client/public/assets/developers/Tanav Prabhu.jpg b/client/public/assets/developers/Tanav Prabhu.jpg new file mode 100644 index 0000000..1e7a775 Binary files /dev/null and b/client/public/assets/developers/Tanav Prabhu.jpg differ diff --git a/client/public/assets/logos/HudsonRiverTrading.png b/client/public/assets/logos/HudsonRiverTrading.png new file mode 100644 index 0000000..19b393c Binary files /dev/null and b/client/public/assets/logos/HudsonRiverTrading.png differ diff --git a/client/public/assets/logos/MiniMax.png b/client/public/assets/logos/MiniMax.png new file mode 100644 index 0000000..2ed0522 Binary files /dev/null and b/client/public/assets/logos/MiniMax.png differ diff --git a/client/src/App.tsx b/client/src/App.tsx index 939079c..ed08ed6 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -8,20 +8,26 @@ import Account from "./pages/account"; import Unknown from "./pages/unknown"; import LoginError from "./pages/loginError"; import Navbar from "./components/Navbar"; +import Footer from "./components/Footer"; const App = () => { return ( - - - } /> - } /> - } /> - } /> - } /> - } /> - } /> - +
+ +
+ + } /> + } /> + } /> + } /> + } /> + } /> + } /> + +
+
); }; diff --git a/client/src/components/Footer.tsx b/client/src/components/Footer.tsx new file mode 100644 index 0000000..6d59c8d --- /dev/null +++ b/client/src/components/Footer.tsx @@ -0,0 +1,18 @@ +const Footer = () => { + return ( + + ); +}; + +export default Footer; diff --git a/client/src/pages/about.tsx b/client/src/pages/about.tsx index 97c7865..86c23ff 100644 --- a/client/src/pages/about.tsx +++ b/client/src/pages/about.tsx @@ -54,6 +54,12 @@ const About = () => { RDB Github + + Hudson River Trading + + + MiniMax +

Meet our team

@@ -133,6 +139,30 @@ const currentDevelopers = [ image: "/assets/developers/ChristinaXu.jpeg", location: "Lincoln, Nebraska", github: "https://github.com/shadaxiong", + }, + { + name: "Chloe Wu", + position: "Developer", + image: "/assets/developers/Chloe Wu.JPG", + location: "", + }, + { + name: "David Sadka", + position: "Developer", + image: "/assets/developers/David Sadka.png", + location: "", + }, + { + name: "Peter Yu", + position: "Developer", + image: "/assets/developers/Peter Yu.png", + location: "", + }, + { + name: "Tanav Prabhu", + position: "Developer", + image: "/assets/developers/Tanav Prabhu.jpg", + location: "", } ]