diff --git a/src/components/DiscoverPage.tsx b/src/components/DiscoverPage.tsx index 1ccebfa..2ec1d43 100644 --- a/src/components/DiscoverPage.tsx +++ b/src/components/DiscoverPage.tsx @@ -483,7 +483,7 @@ export function DiscoverPage({ transition={{ duration: 0.6, delay: 0.1 }} > Unlock Your - Adventure + Adventure

What our{' '} - + travelers {' '} say diff --git a/src/components/FAQPage.tsx b/src/components/FAQPage.tsx index 58e7197..ffe84d2 100644 --- a/src/components/FAQPage.tsx +++ b/src/components/FAQPage.tsx @@ -244,7 +244,7 @@ export function FAQPage({

Frequently Asked{' '} - + Questions

diff --git a/src/components/HowItWorks.tsx b/src/components/HowItWorks.tsx index 35c4691..8950716 100644 --- a/src/components/HowItWorks.tsx +++ b/src/components/HowItWorks.tsx @@ -2,6 +2,7 @@ import { CreditCard, MapPin, Calendar, Zap, ChevronLeft, ChevronRight, Smartphon import { useState } from 'react'; import { motion, AnimatePresence } from 'motion/react'; import { ImageWithFallback } from './figma/ImageWithFallback'; +import { useLocation } from 'react-router-dom'; const steps = [ { @@ -51,6 +52,8 @@ const steps = [ export function HowItWorks() { const [activeStep, setActiveStep] = useState(0); // Start with first step active + const location = useLocation() + const nextStep = () => { setActiveStep((prev) => (prev + 1) % steps.length); }; @@ -78,8 +81,10 @@ export function HowItWorks() {

How Your{' '} - Melbourne{' '} - City Card{' '} + {!location.pathname.includes("landing") && + Melbourne + } + City Card{' '} Works.

diff --git a/src/components/MagicItineraryPage.tsx b/src/components/MagicItineraryPage.tsx index eb6ae4b..51b15ad 100644 --- a/src/components/MagicItineraryPage.tsx +++ b/src/components/MagicItineraryPage.tsx @@ -108,7 +108,7 @@ export function MagicItineraryPage({ >

Plan Your Perfect{' '} - + Melbourne Adventure

diff --git a/src/components/MelbourneAttractions.tsx b/src/components/MelbourneAttractions.tsx index 00bd3a2..c8e3f00 100644 --- a/src/components/MelbourneAttractions.tsx +++ b/src/components/MelbourneAttractions.tsx @@ -281,7 +281,7 @@ export function MelbourneAttractions() {

Discover{' '} - + Melbourne's {' '} Best{' '} diff --git a/src/components/MelbourneBlogs.tsx b/src/components/MelbourneBlogs.tsx index d65a7f9..da06e92 100644 --- a/src/components/MelbourneBlogs.tsx +++ b/src/components/MelbourneBlogs.tsx @@ -116,7 +116,7 @@ export function MelbourneBlogs() {

Melbourne{' '} - + Blogs

diff --git a/src/components/MelbourneCardComparison.tsx b/src/components/MelbourneCardComparison.tsx index 58aa1bb..d12ac03 100644 --- a/src/components/MelbourneCardComparison.tsx +++ b/src/components/MelbourneCardComparison.tsx @@ -124,7 +124,7 @@ export function MelbourneCardComparison({ onCheckoutClick }: MelbourneCardCompar

- + Buy {' '} Now diff --git a/src/components/MelbourneFAQ.tsx b/src/components/MelbourneFAQ.tsx index 30afd55..b9c4e83 100644 --- a/src/components/MelbourneFAQ.tsx +++ b/src/components/MelbourneFAQ.tsx @@ -101,7 +101,7 @@ export function MelbourneFAQ() {

Frequently Asked{' '} - + Questions

diff --git a/src/components/MelbournePage.tsx b/src/components/MelbournePage.tsx index 96f0ca6..4960380 100644 --- a/src/components/MelbournePage.tsx +++ b/src/components/MelbournePage.tsx @@ -398,7 +398,7 @@ export function MelbournePage({ viewport={{ once: true }} > Plan Your{' '} - + Dream Journey
diff --git a/src/components/MelbourneTourOverview.tsx b/src/components/MelbourneTourOverview.tsx index 4457593..55882a8 100644 --- a/src/components/MelbourneTourOverview.tsx +++ b/src/components/MelbourneTourOverview.tsx @@ -89,7 +89,7 @@ export function MelbourneTourOverview() { >

Melbourne{' '} - + Tour {' '} Overview diff --git a/src/components/MobileAppSection.tsx b/src/components/MobileAppSection.tsx index 4cfafc9..677347d 100644 --- a/src/components/MobileAppSection.tsx +++ b/src/components/MobileAppSection.tsx @@ -68,7 +68,7 @@ export function MobileAppSection() { >

Access all your{' '} - + city cards
diff --git a/src/components/PassesPage.tsx b/src/components/PassesPage.tsx index 91a64d9..cb87517 100644 --- a/src/components/PassesPage.tsx +++ b/src/components/PassesPage.tsx @@ -189,7 +189,7 @@ export function PassesPage({

- Buy Passes + Buy Passes

Skip the lines, save money, and explore more with our flexible city cards designed for modern travelers @@ -329,7 +329,7 @@ export function PassesPage({

Good to{' '} - Know + Know

Simple tips to help you get the most out of your CityCard experience diff --git a/src/components/PersonalizedTourHero.tsx b/src/components/PersonalizedTourHero.tsx index eb39f32..d7ef775 100644 --- a/src/components/PersonalizedTourHero.tsx +++ b/src/components/PersonalizedTourHero.tsx @@ -122,7 +122,7 @@ export function PersonalizedTourHero({ onCreateItineraryClick }: PersonalizedTou

Create Your{' '} + bg-clip-text text-transparent inline-block overflow-visible whitespace-nowrap pr-2"> Magic Itinerary

diff --git a/src/components/SuperSavingsPage.tsx b/src/components/SuperSavingsPage.tsx index 4124ccc..6743d5d 100644 --- a/src/components/SuperSavingsPage.tsx +++ b/src/components/SuperSavingsPage.tsx @@ -305,7 +305,7 @@ export function SuperSavingsPage({ >

Unlock{' '} - + Super Savings

@@ -355,7 +355,7 @@ export function SuperSavingsPage({ >

Featured{' '} - + Super Savings

diff --git a/src/components/TrustSection.tsx b/src/components/TrustSection.tsx index 14fd60c..327f68d 100644 --- a/src/components/TrustSection.tsx +++ b/src/components/TrustSection.tsx @@ -151,7 +151,7 @@ export function TrustSection() {

What Our{' '} - + Travelers {' '} Say diff --git a/src/components/WhatsIncludedHero.tsx b/src/components/WhatsIncludedHero.tsx index 0f8c574..aed0156 100644 --- a/src/components/WhatsIncludedHero.tsx +++ b/src/components/WhatsIncludedHero.tsx @@ -101,10 +101,10 @@ export function WhatsIncludedHero({ onCreateItineraryClick }: WhatsIncludedHeroP {/* Main Heading */}

One pass.{' '} - + Everything you {' '} - + need {' '} to explore. diff --git a/src/index.css b/src/index.css index b774dec..9c6c605 100644 --- a/src/index.css +++ b/src/index.css @@ -3661,7 +3661,7 @@ .bg-gradient-to-r { --tw-gradient-position: to right in oklab; background-image: linear-gradient(var(--tw-gradient-stops)); - padding-right: 8px; + /* padding-right: 8px; */ } .bg-gradient-to-t {