From b828fafee2a7c754d40ef7002b7c40697c0cdb4a Mon Sep 17 00:00:00 2001 From: albertying Date: Wed, 12 Nov 2025 19:01:55 -0500 Subject: [PATCH] finish all tasks --- src/App.tsx | 16 +++-- src/components/ApplicationsModal.tsx | 93 ++++++++++++++++++++++++++++ src/components/UserCard.tsx | 80 ++++++++++++++---------- src/components/UserData.tsx | 58 ++++++++++++----- src/components/UserModal.tsx | 67 ++++++++++++++++++++ 5 files changed, 262 insertions(+), 52 deletions(-) create mode 100644 src/components/ApplicationsModal.tsx create mode 100644 src/components/UserModal.tsx diff --git a/src/App.tsx b/src/App.tsx index 18ac09d..4d27036 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,9 +5,15 @@ import { Routes, Route } from "react-router-dom"; import axios from "axios"; import { initializeApp } from "firebase/app"; import { setPersistence, getAuth, inMemoryPersistence } from "firebase/auth"; -import { useLogin, LoadingScreen, AuthProvider } from "@hex-labs/core"; +import { + useLogin, + LoadingScreen, + AuthProvider, + Header, + Footer, +} from "@hex-labs/core"; -import UserData from './components/UserData'; +import UserData from "./components/UserData"; // a little bee ascii art // const art = @@ -48,14 +54,14 @@ export const App = () => { // useAuth hook to retrieve the user's login details. return ( - {/* Setting up our React Router to route to all the different pages we may have */} +
} /> - +