From 2f49f85d004fa4539caadd0b9df9ea2dbf7890e5 Mon Sep 17 00:00:00 2001 From: DennisHao1211 Date: Sun, 16 Nov 2025 15:03:48 -0500 Subject: [PATCH] Hanxiang(Dennis) Hao Onboarding Project --- src/App.tsx | 15 ++- src/components/UserCard.tsx | 198 ++++++++++++++++++++++++++++++++---- src/components/UserData.tsx | 44 ++++---- 3 files changed, 216 insertions(+), 41 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 18ac09d..68bf72b 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,7 +5,14 @@ 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, + HeaderItem, + Footer, +} from "@hex-labs/core"; import UserData from './components/UserData'; @@ -48,12 +55,14 @@ export const App = () => { // useAuth hook to retrieve the user's login details. return ( - +
+ Hexlabs Users +
{/* Setting up our React Router to route to all the different pages we may have */} } /> - +