diff --git a/src/AppRouter.tsx b/src/AppRouter.tsx index 48a19d1..a58d8bd 100644 --- a/src/AppRouter.tsx +++ b/src/AppRouter.tsx @@ -157,7 +157,7 @@ export function AppRouter({ {/* Information Pages */} - + } /> diff --git a/src/components/FooterBrand.tsx b/src/components/FooterBrand.tsx index f7a0307..e93cc93 100644 --- a/src/components/FooterBrand.tsx +++ b/src/components/FooterBrand.tsx @@ -3,6 +3,7 @@ import { motion } from 'motion/react'; import { Apple, Play } from 'lucide-react'; import { ImageWithFallback } from './figma/ImageWithFallback'; import cityCardsLogo from '../assets/cit-logo.png'; +import { Link } from 'react-router-dom'; export function FooterBrand() { return ( @@ -14,11 +15,13 @@ export function FooterBrand() { transition={{ duration: 0.5 }} >
+ CityCards Logo +

Discover the best of every city with our curated experiences and attractions. diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 90bda91..5893b72 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -514,7 +514,7 @@ export default function Navbar({ }`} initial={{ scale: 0.95, opacity: 0, y: 0 }} animate={{ - scale: isScrolled ? 0.98 : 1, + scale: isScrolled ? 1 : 1, opacity: 1, y: isScrolled ? 2 : 0 }} @@ -527,7 +527,7 @@ export default function Navbar({ whileHover={{ scale: 1.05 }} whileTap={{ scale: 0.95 }} > - + - {activeCity && - activeCity !== 'shared' && - activeCity !== 'Landingpage' && - activeCity.toLowerCase() !== 'landingpage' ? - activeCity.charAt(0).toUpperCase() + activeCity.slice(1) : - activeCity.toLowerCase() === 'landingpage' || activeCity.toLowerCase() === 'landing' - ? 'Landing' - : 'Select City' + {!activeCity || activeCity === 'shared' + ? 'City' + : ['landing', 'landingpage'].includes(activeCity.toLowerCase()) + ? 'City' + : activeCity.charAt(0).toUpperCase() + activeCity.slice(1) } + diff --git a/src/components/PassesPage.tsx b/src/components/PassesPage.tsx index dcc5f85..24314e1 100644 --- a/src/components/PassesPage.tsx +++ b/src/components/PassesPage.tsx @@ -61,7 +61,7 @@ const passTypes: PassType[] = [ ], tableFeatures: { freeDelivery: true, - attractionsIncluded: 'Up to 5 attractions', + attractionsIncluded: '3, 5, or 7 attractions', validityPeriod: '30 days', audioGuide: false, skipTheLine: 'Selected venues', @@ -91,7 +91,7 @@ const passTypes: PassType[] = [ tableFeatures: { freeDelivery: true, attractionsIncluded: 'All attractions (50+)', - validityPeriod: '7 consecutive days', + validityPeriod: '2, 3, 5, or 7 days', audioGuide: true, skipTheLine: 'All venues', mobileApp: true,