aakashbansal commited on
Commit
6cd2d37
·
1 Parent(s): c24ed27

let's make the three journeys about the three big cats. Use images of ti

Browse files
Files changed (1) hide show
  1. src/lib/journeys.ts +9 -9
src/lib/journeys.ts CHANGED
@@ -4,24 +4,24 @@ import type { Journey } from '@/types';
4
  export const journeys: Journey[] = [
5
  {
6
  id: '1',
7
- title: 'Journey 1',
8
- description: 'Explore this fascinating image and answer AI-generated questions about it.',
9
  imageUrl: 'https://placehold.co/400x600.png',
10
- imageHint: 'lion safari',
11
  },
12
  {
13
  id: '2',
14
- title: 'Journey 2',
15
- description: 'Discover the details in this image and test your knowledge with AI challenges.',
16
  imageUrl: 'https://placehold.co/400x600.png',
17
- imageHint: 'tiger jungle',
18
  },
19
  {
20
  id: '3',
21
- title: 'Journey 3',
22
- description: 'Analyze the scene presented and respond to insightful questions from the AI.',
23
  imageUrl: 'https://placehold.co/400x600.png',
24
- imageHint: 'bear forest',
25
  },
26
  ];
27
 
 
4
  export const journeys: Journey[] = [
5
  {
6
  id: '1',
7
+ title: 'Tiger Journey',
8
+ description: 'Explore this fascinating image of a tiger and answer AI-generated questions about it.',
9
  imageUrl: 'https://placehold.co/400x600.png',
10
+ imageHint: 'tiger jungle',
11
  },
12
  {
13
  id: '2',
14
+ title: 'Jaguar Journey',
15
+ description: 'Discover the details in this image of a jaguar and test your knowledge with AI challenges.',
16
  imageUrl: 'https://placehold.co/400x600.png',
17
+ imageHint: 'jaguar rainforest',
18
  },
19
  {
20
  id: '3',
21
+ title: 'Leopard Journey',
22
+ description: 'Analyze the scene presented with a leopard and respond to insightful questions from the AI.',
23
  imageUrl: 'https://placehold.co/400x600.png',
24
+ imageHint: 'leopard savanna',
25
  },
26
  ];
27