Spaces:
Sleeping
Sleeping
File size: 922 Bytes
2b21361 d93d789 c0320bb bd29ed1 6cd2d37 2b21361 6cd2d37 d93d789 c0320bb bd29ed1 6cd2d37 2b21361 bd29ed1 d93d789 c0320bb bd29ed1 6cd2d37 2b21361 6cd2d37 d93d789 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
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);
};
|