-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdata.js
36 lines (35 loc) · 1.86 KB
/
data.js
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
32
33
34
35
36
const data = [
{
name: 'Venice',
cover: require('./assets/venice.jpg'),
avatar: require('./assets/veniceAvatar.jpg'),
cardTitle: 'Venice',
cardText:
'Venice, the capital of northern Italy’s Veneto region, is built on more than 100 small islands in a lagoon in the Adriatic Sea. It has no roads, just canals – including the Grand Canal thoroughfare – lined with Renaissance and Gothic palaces.',
},
{
name: 'Seville',
cover: require('./assets/seville.jpg'),
avatar: require('./assets/sevilleAvatar.jpg'),
cardTitle: 'Seville',
cardText:
'Seville is the capital of southern Spain’s Andalusia region. It is famous for flamenco dancing, particularly in its Triana neighborhood. Major landmarks include the ornate Alcázar castle complex, built during the Moorish Almohad dynasty, and the 18th-century Plaza de Toros de la Maestranza bullring.',
},
{
name: 'Amsterdam',
cover: require('./assets/amsterdam.jpg'),
avatar: require('./assets/amsterdamAvatar.jpg'),
cardTitle: 'Amsterdam',
cardText:
'Amsterdam is the Netherlands capital, known for its artistic heritage, elaborate canal system and narrow houses with gabled facades, legacies of the city’s 17th-century Golden Age. Its Museum District houses the Van Gogh Museum, works by Vermeer at the Rijksmuseum, and modern art at the Stedelijk.',
},
{
name: 'Dublin',
cover: require('./assets/dublin.jpg'),
avatar: require('./assets/dublinAvatar.png'),
cardTitle: 'Dublin',
cardText:
'Dublin, capital of the Republic of Ireland, is on Ireland’s east coast at the mouth of the River Liffey. Its historic buildings include Dublin Castle, dating to the 13th century, and imposing St Patrick’s Cathedral, founded in 1191. City parks include landscaped St Stephen’s Green and huge Phoenix Park.',
},
];
export default data;