diff --git a/client/package-lock.json b/client/package-lock.json index 2f50632..e6ab13c 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -6225,4 +6225,4 @@ } } } - } + } \ No newline at end of file diff --git a/client/src/assets/logo_diabetes.png b/client/src/assets/logo_diabetes.png new file mode 100644 index 0000000..e97b65d Binary files /dev/null and b/client/src/assets/logo_diabetes.png differ diff --git a/client/src/assets/logo_final.png b/client/src/assets/logo_final.png new file mode 100644 index 0000000..2321214 Binary files /dev/null and b/client/src/assets/logo_final.png differ diff --git a/client/src/components/Navbar.jsx b/client/src/components/Navbar.jsx index 66cdb11..96ab33a 100644 --- a/client/src/components/Navbar.jsx +++ b/client/src/components/Navbar.jsx @@ -1,8 +1,8 @@ import React, { useState } from "react"; -import { FaGithub } from "react-icons/fa"; +import { FaGithub, FaBars, FaTimes } from "react-icons/fa"; // Combine the imports from react-icons/fa import { Link } from "react-router-dom"; import { CiStar } from "react-icons/ci"; -import { FaBars, FaTimes } from "react-icons/fa"; +import logo_final from '../assets/logo_final.png'; // Adjust the path to your logo const Navbar = () => { const [isOpen, setIsOpen] = useState(false); @@ -15,58 +15,37 @@ const Navbar = () => { setIsOpen(false); }; + const logoStyle = { + height: '60px', // Adjusted size for better visibility + width: '60px', + borderRadius: '50%', + marginRight: '10px', + }; + return ( -