From 5db43deb37bb7612d4ad1d4233383c86d9719983 Mon Sep 17 00:00:00 2001 From: steverusso Date: Sun, 29 Mar 2020 20:21:37 -0400 Subject: [PATCH] Created a 'Portfolio' page and link to it from Websites on the services page. --- src/pages/Portfolio.vue | 68 +++++++++++++++++++++++++++++++++++++++ src/pages/Services.vue | 15 ++++++++- src/plugins/vue-router.js | 1 + 3 files changed, 83 insertions(+), 1 deletion(-) create mode 100644 src/pages/Portfolio.vue diff --git a/src/pages/Portfolio.vue b/src/pages/Portfolio.vue new file mode 100644 index 0000000..b011b67 --- /dev/null +++ b/src/pages/Portfolio.vue @@ -0,0 +1,68 @@ + + + diff --git a/src/pages/Services.vue b/src/pages/Services.vue index 61a32f7..885b696 100644 --- a/src/pages/Services.vue +++ b/src/pages/Services.vue @@ -16,6 +16,16 @@

{{ d }}

+
+ + {{ l.text }} + +
@@ -43,7 +53,10 @@ export default { 'Every business needs a web presence. It is one of the most effective ways to drive customers to your business.', 'It can be a deterrent if it is not high quality though! Over half of users will abandon your site if it does not load in under 3 seconds. It is crucial that the website displays quickly and looks good.', 'Simple Systems can improve your prospective clients\' experience by building a website from scratch, or cleaning up the existing one. We can handle all the hosting for you too!' - ] + ], + links: [ + { text: 'Our Portfolio', to: '/portfolio' }, + ], }, { name: 'Data Management', diff --git a/src/plugins/vue-router.js b/src/plugins/vue-router.js index 45af488..d2222c3 100644 --- a/src/plugins/vue-router.js +++ b/src/plugins/vue-router.js @@ -36,6 +36,7 @@ export default new VueRouter({ routes: [ { path: '/', component: () => import('@/pages/Home') }, { path: '/services', component: () => import('@/pages/Services') }, + { path: '/portfolio', component: () => import('@/pages/Portfolio.vue') }, { path: '/about', component: () => import('@/pages/About') }, { path: '/blog', component: () => import('@/pages/Blog') }, ...blogRoutes, -- 2.45.2