import type { Journey } from '@/types'; export const journeys: Journey[] = [ { id: '1', title: 'Journey 1', description: 'Explore this fascinating image of a tiger and answer AI-generated questions about it.', imageUrl: 'https://placehold.co/400x600.png', imageHint: 'tiger jungle', }, { id: '2', title: 'Journey 2', description: 'Discover the details in this image of a jaguar and test your knowledge with AI challenges.', imageUrl: 'https://placehold.co/400x600.png', imageHint: 'leopard wild', }, { id: '3', title: 'Journey 3', description: 'Analyze the scene presented with a leopard and respond to insightful questions from the AI.', imageUrl: 'https://placehold.co/400x600.png', imageHint: 'leopard savanna', }, ]; export const getJourneyById = (id: string): Journey | undefined => { return journeys.find(journey => journey.id === id); };