Skip to content

Commit cde5f12

Browse files
authored
Merge pull request #173 from shibasarkar/develop
redesign logo and favicon
2 parents 6e6867b + fc54474 commit cde5f12

File tree

6 files changed

+4
-3
lines changed

6 files changed

+4
-3
lines changed

client/public/1.png

122 KB
Loading

client/public/3.png

15.3 KB
Loading

client/public/favicon.png

91.8 KB
Loading

client/public/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<link rel="icon" href="%PUBLIC_URL%/logo.png" />
5+
<link rel="icon" href="%PUBLIC_URL%/favicon.png" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<meta name="theme-color" content="#000000" />
88
<meta

client/public/logo.png

153 KB
Loading

client/src/modules/common/Navbar.jsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ const Navbar = () => {
3030
<nav className="bg-[#333333] top-0 fixed z-[100] py-4 flex justify-between items-center w-full px-5 lg:py-2 md:px-10 text-white">
3131
{/* Logo and link to home page */}
3232
<NavLink to="/">
33-
<img className="h-10 md:h-14" alt="medi-connects logo" src="logo.png" />
33+
{/* <img className="h-10 md:h-14" alt="medi-connects logo" src="logo.png" /> */}
34+
<img className="h-14 md:h-18 object-cover" alt="medi-connects logo" src="logo.png" />
3435
</NavLink>
3536

3637
{/* Mobile menu button (hamburger or close icon) */}
@@ -44,7 +45,7 @@ const Navbar = () => {
4445

4546
{/* Mobile Navigation Menu */}
4647
{isMobileMenuOpen && (
47-
<div className="bg-[#333333] lg:hidden absolute z-[100] flex text-xl md:text-3xl flex-col items-start pl-8 gap-10 md:gap-16 top-16 md:top-[84px] w-full left-0 py-7 md:py-20 h-fit">
48+
<div className="bg-[#333333] lg:hidden absolute z-[100] flex text-xl md:text-3xl flex-col items-start pl-8 gap-10 md:gap-16 top-16 md:top-[84px] w-full left-0 py-7 my-4 md:py-20 h-fit">
4849
{/* Home link for mobile view */}
4950
<NavLink
5051
className={({ isActive }) =>

0 commit comments

Comments
 (0)