import { createTour } from '@oppla-ai/tours';// Create a tourconst tour = createTour({ id: 'welcome-tour', name: 'Welcome Tour', steps: [ { type: 'tooltip', target: '#signup-button', content: 'Click here to create your account' }, { type: 'modal', content: 'Welcome to our platform! Let us show you around.' } ]});// Start the tourtour.start();