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 */}
-
+