diff --git a/index.html b/index.html index f923aa4..89dae80 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - ethiopia_hacks + Ethiopia Hacks @@ -15,7 +15,7 @@ - + @@ -29,7 +29,7 @@
diff --git a/src/App.vue b/src/App.vue index 3bca994..af71d57 100644 --- a/src/App.vue +++ b/src/App.vue @@ -2,6 +2,15 @@ + + + + + + + web + + @@ -15,12 +24,7 @@ - - - - - web - + @@ -47,11 +51,11 @@ - + compare_arrows - Switch drawer (click me) + Announcements @@ -64,10 +68,7 @@ \ No newline at end of file diff --git a/src/router/index.js b/src/router/index.js index 5fa7f9d..ebf6136 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1,6 +1,6 @@ import Vue from 'vue' import Router from 'vue-router' -import HelloWorld from '@/components/HelloWorld' +import HomePage from '@/components/HomePage' Vue.use(Router) @@ -8,8 +8,8 @@ export default new Router({ routes: [ { path: '/', - name: 'HelloWorld', - component: HelloWorld + name: 'HomePage', + component: HomePage } ] })