From ebeb6b9c68ea4d45764711874a69e83966a26dcc Mon Sep 17 00:00:00 2001 From: Aditya <97450298+1234-ad@users.noreply.github.com> Date: Sun, 2 Nov 2025 11:35:59 +0530 Subject: [PATCH] Fix: Display footer on all pages, not just home - Removed conditional rendering that limited footer to home page only - Footer now appears consistently across all pages - Resolves issue #61 --- src/App.tsx | 46 ++++++++++++++++++++++------------------------ 1 file changed, 22 insertions(+), 24 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index d1c0df1..c108120 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -89,33 +89,31 @@ function App() { {/* Footer */} - {currentPage === 'home' && ( -