From 1dc23d40ed063c60b99658d1c3b657f6c0c6af9d Mon Sep 17 00:00:00 2001 From: Angela Chen Date: Wed, 12 Nov 2025 22:55:16 -0500 Subject: [PATCH] finish onboarding tasks --- src/App.tsx | 16 +++- src/components/UserCard.tsx | 175 ++++++++++++++++++++++++++++++------ src/components/UserData.tsx | 46 ++++++---- 3 files changed, 190 insertions(+), 47 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 18ac09d..a8ae4d9 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 = @@ -46,16 +52,18 @@ export const App = () => { // Sets up the AuthProvider so that any part of the application can use the // useAuth hook to retrieve the user's login details. + // header and footer from core package return ( +
{/* Setting up our React Router to route to all the different pages we may have */} } /> - +