From c0c9c86a58c17d5b90c26aaa3c1047b92863e455 Mon Sep 17 00:00:00 2001 From: priyanshuvish Date: Tue, 11 Nov 2025 15:28:24 +0530 Subject: [PATCH] change navbar select city if landing then text should be landing --- src/components/Navbar.tsx | 4 +++- src/components/SuperSavingsPage.tsx | 9 ++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 39d7ba3..fd75953 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -596,7 +596,9 @@ export default function Navbar({ activeCity !== 'Landingpage' && activeCity.toLowerCase() !== 'landingpage' ? activeCity.charAt(0).toUpperCase() + activeCity.slice(1) : - 'Select City' + activeCity.toLowerCase() === 'landingpage' || activeCity.toLowerCase() === 'landing' + ? 'Landing' + : 'Select City' } diff --git a/src/components/SuperSavingsPage.tsx b/src/components/SuperSavingsPage.tsx index 0624cb1..714d066 100644 --- a/src/components/SuperSavingsPage.tsx +++ b/src/components/SuperSavingsPage.tsx @@ -287,7 +287,14 @@ export function SuperSavingsPage({ {/* Hero Section */}
{/* Background gradient */} -
+
+ +
+