diff --git a/pages/contact.vue b/pages/contact.vue
index a5a5b3b..0b582be 100644
--- a/pages/contact.vue
+++ b/pages/contact.vue
@@ -69,7 +69,7 @@
Corporate portraits and publicity photos for printed materials, including annual reports and newsletters.
', - 'linkUrl': 'galleries?gallery=0', - }, - { - 'heading': 'Dance', - 'imageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-dance.jpg', - 'backgroundImageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-dance.jpg', - 'html': 'Photography and video production of dancers and performances for print, web, and promotion.
', - 'linkUrl': 'galleries?gallery=1', - }, - { - 'heading': 'Music', - 'imageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-music.jpg', - 'backgroundImageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-music.jpg', - 'html': 'Photography and video of musical performances and portraits for print and the web, CD covers, and publicity photos.
', - 'linkUrl': 'galleries?gallery=2', - }, - { - 'heading': 'Events', - 'imageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-events.jpg', - 'backgroundImageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-events.jpg', - 'html': 'Photography and video production for your corporate, organisational and personal events and celebrations.
', - 'linkUrl': 'galleries?gallery=3', - }, - ] } }, @@ -111,6 +81,44 @@ export default { this.activeIndex = index }, }, + + asyncData () { + return new Promise((resolve, reject) => { + resolve({ + imageUrl: "https://via.placeholder.com/1920x1080", + services: [ + { + 'heading': 'Portraits', + 'imageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-portraits.jpg', + 'backgroundImageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-portraits.jpg', + 'html': 'Corporate portraits and publicity photos for printed materials, including annual reports and newsletters.
', + 'linkUrl': 'galleries?gallery=0', + }, + { + 'heading': 'Dance', + 'imageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-dance.jpg', + 'backgroundImageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-dance.jpg', + 'html': 'Photography and video production of dancers and performances for print, web, and promotion.
', + 'linkUrl': 'galleries?gallery=1', + }, + { + 'heading': 'Music', + 'imageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-music.jpg', + 'backgroundImageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-music.jpg', + 'html': 'Photography and video of musical performances and portraits for print and the web, CD covers, and publicity photos.
', + 'linkUrl': 'galleries?gallery=2', + }, + { + 'heading': 'Events', + 'imageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-events.jpg', + 'backgroundImageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-events.jpg', + 'html': 'Photography and video production for your corporate, organisational and personal events and celebrations.
', + 'linkUrl': 'galleries?gallery=3', + }, + ] + }) + }) + }, }