{{ data.title }}
diff --git a/components/Steps.vue b/components/Steps.vue
index 8eef6c4..a0ea084 100644
--- a/components/Steps.vue
+++ b/components/Steps.vue
@@ -20,6 +20,42 @@ export default {
'Nor again is there anyone who loves or pursues or desires to obtain',
deployAddress: '0xf7a526d8642f6c6cb98bcda9919209d3c1ce359e',
},
+ { title: 'But I must explain to you how all this mistaken idea' },
+ {
+ title:
+ 'Nor again is there anyone who loves or pursues or desires to obtain',
+ deployAddress: '0xf7a526d8642f6c6cb98bcda9919209d3c1ce359e',
+ },
+ { title: 'But I must explain to you how all this mistaken idea' },
+ {
+ title:
+ 'Nor again is there anyone who loves or pursues or desires to obtain',
+ deployAddress: '0xf7a526d8642f6c6cb98bcda9919209d3c1ce359e',
+ },
+ { title: 'But I must explain to you how all this mistaken idea' },
+ {
+ title:
+ 'Nor again is there anyone who loves or pursues or desires to obtain',
+ deployAddress: '0xf7a526d8642f6c6cb98bcda9919209d3c1ce359e',
+ },
+ { title: 'But I must explain to you how all this mistaken idea' },
+ {
+ title:
+ 'Nor again is there anyone who loves or pursues or desires to obtain',
+ deployAddress: '0xf7a526d8642f6c6cb98bcda9919209d3c1ce359e',
+ },
+ { title: 'But I must explain to you how all this mistaken idea' },
+ {
+ title:
+ 'Nor again is there anyone who loves or pursues or desires to obtain',
+ deployAddress: '0xf7a526d8642f6c6cb98bcda9919209d3c1ce359e',
+ },
+ { title: 'But I must explain to you how all this mistaken idea' },
+ {
+ title:
+ 'Nor again is there anyone who loves or pursues or desires to obtain',
+ deployAddress: '0xf7a526d8642f6c6cb98bcda9919209d3c1ce359e',
+ },
],
}
},
diff --git a/pages/index.vue b/pages/index.vue
index e0a9766..ae582e8 100644
--- a/pages/index.vue
+++ b/pages/index.vue
@@ -7,14 +7,21 @@
- Start now
+ e.preventDefault()"
+ @click="onStart"
+ >Start now
Completed Tasks: 5/16
-
+
@@ -25,5 +32,17 @@ export default {
components: {
Steps,
},
+ methods: {
+ scrollTo(element) {
+ window.scrollTo({
+ behavior: 'smooth',
+ left: 0,
+ top: element.getBoundingClientRect().top,
+ })
+ },
+ onStart() {
+ this.scrollTo(this.$refs.steps.$el)
+ },
+ },
}