diff --git a/src/components/Insight.vue b/src/components/Insight.vue
new file mode 100644
index 0000000..4c68c67
--- /dev/null
+++ b/src/components/Insight.vue
@@ -0,0 +1,131 @@
+
+
+
+
+
+
+
+
+
+
+ Welcome to
+ Productgrowth
+
+
+ -
+
Connect & learn from fellow product enthusiasts
+
+ -
+
Share & pickup deeper insights from real world products
+
+ -
+
Access to XX Casestudies
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/router/index.js b/src/router/index.js
index 0e94a09..99dad09 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -7,6 +7,7 @@ import Reset from '@/components/Reset'
import Profile from '@/components/Profile'
import welcome from '@/components/welcome'
import Intermediate from '@/components/Intermediate'
+import Insight from '@/components/Insight'
import router from '../router'
Vue.use(Router)
@@ -44,6 +45,11 @@ export default new Router({
path: '/profile',
name: 'Profile',
component: Profile,
+ },
+ {
+ path: '/insight',
+ name: 'Insight',
+ component: Insight,
}
],