From bf9ff41308d3e3bf5c6cde76d2ca3c066afc9a29 Mon Sep 17 00:00:00 2001 From: Aditi Raj Date: Fri, 1 Aug 2025 13:36:57 +0530 Subject: [PATCH 1/3] Made Navbar to be mobile friendly --- src/components/Navbar.tsx | 8 ++++---- vite.config.ts | 4 ++++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 6b5c903..efe19ff 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -68,17 +68,17 @@ const Navbar: React.FC = () => { className="relative w-8 h-8 flex flex-col space-y-[5px] items-center group focus:outline-none" > @@ -88,7 +88,7 @@ const Navbar: React.FC = () => { {/* Mobile Links */} {isOpen && ( -
+
Date: Fri, 1 Aug 2025 17:14:31 +0530 Subject: [PATCH 2/3] Fix home route --- src/components/Navbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index efe19ff..ab667be 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -91,7 +91,7 @@ const Navbar: React.FC = () => {
setIsOpen(false)} > From abee44c13910545024ae296c7d0c698a2feee842 Mon Sep 17 00:00:00 2001 From: Mehul Date: Fri, 1 Aug 2025 17:15:50 +0530 Subject: [PATCH 3/3] remove redundant config --- vite.config.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 98b2f12..8b0f57b 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -4,8 +4,4 @@ import react from '@vitejs/plugin-react' // https://vite.dev/config/ export default defineConfig({ plugins: [react()], - server:{ - host:'0.0.0.0', - port:5173 - } })