From 75f531bbf3f1843297020ff030fd78ce02477f64 Mon Sep 17 00:00:00 2001 From: ravi-p-k1 Date: Tue, 18 Feb 2025 12:00:33 -0800 Subject: [PATCH] Added Sproutly Logo to Navbar --- frontend/web-app/src/Components/NavBar.tsx | 7 ++++++- frontend/web-app/src/Styles/custom/navBar.css | 4 ++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/frontend/web-app/src/Components/NavBar.tsx b/frontend/web-app/src/Components/NavBar.tsx index 23dda15..f9ab28f 100644 --- a/frontend/web-app/src/Components/NavBar.tsx +++ b/frontend/web-app/src/Components/NavBar.tsx @@ -1,6 +1,8 @@ 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() { @@ -26,7 +28,10 @@ function NavBar() { return ( <>
-
Sproutly
+
+ error img + error img +
{pageArray.map((page, index)=>{ return {page.name} diff --git a/frontend/web-app/src/Styles/custom/navBar.css b/frontend/web-app/src/Styles/custom/navBar.css index 338bc6e..d771967 100644 --- a/frontend/web-app/src/Styles/custom/navBar.css +++ b/frontend/web-app/src/Styles/custom/navBar.css @@ -39,4 +39,8 @@ padding-right: 26px; border-radius: 15px; border-color: #E6F2D7; +} + +.sproutly-text{ + padding-left: 11px; } \ No newline at end of file