Navigation
Overview
How It Works
Basic Multi-Page Tour
const multiPageTour: TourConfig = {
id: 'app-tour',
steps: [
{
id: 'welcome',
page: '/',
targetElement: '#hero-section',
title: 'Welcome to Our App',
content: "Let's take a quick tour of the main features.",
},
{
id: 'dashboard',
page: '/dashboard', // Different page
targetElement: '#stats-panel',
title: 'Your Dashboard',
content: 'Here you can see all your important metrics.',
},
{
id: 'settings',
page: '/settings', // Another page
targetElement: '#profile-section',
title: 'Manage Your Profile',
content: 'Customize your experience in the settings.',
},
],
};Automatic Navigation
Navigation States
Page Change Detection
Handling Dynamic Content
Retry Mechanism
Last updated