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 @@
+
+
+
+
+ Our Portfolio
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ p.title }}
+
+
+
+
+ Visit Site
+ launch
+
+
+
+
+
+
+ {{ p.desc }}
+
+
+
+
+
+
+
+
+
+
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,