Closed John-Fleming closed 4 years ago
const concerts = [{
Date: "1/05/2019",
Venue: "Mad Bomber",
Location: "Germany",
},
{
Date: "1/20/2019",
Venue: "Big Tower",
Location: "France",
},
{
Date: "2/06/2019",
Venue: "Maple ehh",
Location: "Canada",
},
{
Date: "2/18/2019",
Venue: "Winter Palace",
Location: "Russia",
},
{
Date: "2/28/2019",
Venue: "Desert Oasis",
Location: "Pakistan",
},
{
Date: "3/03/2019",
Venue: "Midnight Club",
Location: "Ukraine",
},
{
Date: "3/18/2019",
Venue: "Fiesta Cresto",
Location: "Mexico",
},
{
Date: "3/28/2019",
Venue: "Lil Mehico",
Location: "New Mexico, US",
},
{
Date: "4/04/2019",
Venue: "Whiskey Den",
Location: "Tennessee, US",
},
{
Date: "4/26/2019",
Venue: "Devils House",
Location: "Georgia, US",
},
{
Date: "5/05/2019",
Venue: "Atlantis",
Location: "Florida, US",
},
{
Date: "5/29/2019",
Venue: "Wakanda Forever",
Location: "South Africa",
},
{
Date: "6/08/2019",
Venue: "Fire & Ice",
Location: "New Zealand",
},
{
Date: "6/25/2019",
Venue: "Missile Crisis",
Location: "Cuba",
},
{
Date: "7/13/2019",
Venue: "High Five",
Location: "Jamaica",
},
{
Date: "7/27/2019",
Venue: "Rainforest Cafe",
Location: "Brazil",
},
{
Date: "8/16/2019",
Venue: "Giza",
Location: "Egypt",
},
{
Date: "9/17/2019",
Venue: "Icy Tundra",
Location: "Antartica",
},
{
Date: "10/20/2035",
Venue: "Lunar Lander",
Location: "Moon",
},
{
Date: "11/11/2111",
Venue: "Musks Palace",
Location: "Mars",
},
]
discography array
const discography = [
{
albumArt: "https://cdna.artstation.com/p/assets/images/images/000/207/052/large/juan-francisco-martinez-borges-space-vikings.jpg?1410852553",
albumName: "Viking Galaxy Greatest Hits",
yearReleased: 2015,
tracklist: ['Hall of the Slain', 'Call of the Valkyrie', 'Sickle of Hate', 'Lost Forver', 'Space Chariot', 'Final Frontier', 'Contact', 'Odin on Mars', 'Valhalla Has Fallen', 'Black Hole']
},
{
albumArt: "https://f4.bcbits.com/img/a2679652497_10.jpg",
albumName: "First Contact",
yearReleased: 2000,
tracklist: ['Contact', 'Lost Forever', 'Call of the Valkyrie', 'Ales in Space', 'A Song for Home', 'Lost Control', 'Asgard in Ruins', 'Viking Funeral', 'Spaceship for Two', 'Metal is for Vikings']
},
{
albumArt: "https://i.pinimg.com/originals/08/cc/74/08cc74fa3a9c2905271525943256f29b.jpg",
albumName: "Metal Thor",
yearReleased: 2005,
tracklist: ['Hall of the Slain', 'Final Frontier', 'Odin on Mars', 'Loki Sucks', 'Thor\'s Revenge', 'My Horse is Metal', 'Mjolnir', 'Space Lightning', 'Your Beard', 'Crossing Swords']
},
{
albumArt: "https://s3.gomedia.us/wp-content/uploads/2014/01/Space_Vikings_by_gomedia.jpg",
albumName: "Space Norseman",
yearReleased: 2010,
tracklist: ['Black Hole', 'Sickle of Hate', 'Space Chariot', 'Valhalla Has Fallen', 'Metal on the Fjord', 'Hall of the Space Legends', 'Night of the Battle', 'Dark Angel', 'The Last Asteroid', 'Mead']
},
];
const vikings = [{
imgUrl: "image placeholder",
name: "Celestialis",
Instrument: "Vocals",
Quote: "Wake early if you want another man’s life or land. No lamb for the lazy wolf. No battle’s won in bed"
},
{
imgUrl: "image placeholder",
name: "Novalaris",
Instrument: "Keyboards",
Quote: "One unbreakable shield against the coming darkness, One last blade forged in defiance of fate. Let them be my legacy to the galaxy I conquered."
},
{
imgUrl: "image placeholder",
name: "Galactamod",
Instrument: "Bass",
Quote: "Through the destruction of our enemies do we earn our salvation!"
},
{
imgUrl: "image placeholder",
name: "Nebularis",
Instrument: "Guitar",
Quote: "Here we stand and here shall we die, unbroken and unbowed, though the very hand of death itself come for us, we will spit our defiance to the end!"
},
]
Viking Merch Array
const vikingMerch = [
{
imageURL: "www.imageurl.com",
item: "Viking Galaxy Hat",
price: 25.99,
isAvailable: true
},
{
imageURL: "www.imageurl.com",
item: "Viking Galaxy Shirt",
price: 10,
isAvailable: true
},
{
imageURL: "www.imageurl.com",
item: "Viking Galaxy Sticker Pack",
price: 12,
isAvailable: true
},
{
imageURL: "www.imageurl.com",
item: "Viking Galaxy Poster",
price: 8.99,
isAvailable: false
},
{
imageURL: "www.imageurl.com",
item: "Viking Galaxy Coffee Mug",
price: 9,
isAvailable: false
},
{
imageURL: "www.imageurl.com",
item: "Viking Galaxy Tote Bag",
price: 5,
isAvailable: true
},
{
imageURL: "www.imageurl.com",
item: "Viking Galaxy Hoodie",
price: 45,
isAvailable: true
}
];
User Story
As a developer, you should see 4 arrays of objects for each of the four pages
AC
WHEN you look at this ticket THEN you should see each array displayed in an individual comment
Dev Notes