diff --git a/frontend/web-app/public/index.html b/frontend/web-app/public/index.html
index aa069f2..40f9469 100644
--- a/frontend/web-app/public/index.html
+++ b/frontend/web-app/public/index.html
@@ -24,6 +24,10 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
+
+
+
+
React App
diff --git a/frontend/web-app/src/App.tsx b/frontend/web-app/src/App.tsx
index 40a1860..5a1f320 100644
--- a/frontend/web-app/src/App.tsx
+++ b/frontend/web-app/src/App.tsx
@@ -1,5 +1,6 @@
import React from 'react';
import RouterProvider from './Components/Router';
+import './Styles/global.css'
function App() {
return (
diff --git a/frontend/web-app/src/Components/NavBar.tsx b/frontend/web-app/src/Components/NavBar.tsx
index 5289f58..f9ab28f 100644
--- a/frontend/web-app/src/Components/NavBar.tsx
+++ b/frontend/web-app/src/Components/NavBar.tsx
@@ -1,17 +1,47 @@
-import React from 'react'
-import { Link, Outlet } from 'react-router-dom';
+import React, { useMemo } from 'react'
+import { Link, Outlet, useLocation } from 'react-router-dom';
+import '../Styles/custom/navBar.css'
+import sproutlyLogo from '../Images/sproutly-logo.svg';
+import sproutlyText from '../Images/sproutly-text.svg';
function NavBar() {
- return (
-