diff --git a/web/frontend/src/App.vue b/web/frontend/src/App.vue
index 14bc09e..cb6a637 100644
--- a/web/frontend/src/App.vue
+++ b/web/frontend/src/App.vue
@@ -14,28 +14,22 @@
Home
- Hello
Stats
Attempts
-
-
-
-
-
-
diff --git a/web/frontend/src/main.ts b/web/frontend/src/main.ts
index f7bb9b9..8ff3bd3 100644
--- a/web/frontend/src/main.ts
+++ b/web/frontend/src/main.ts
@@ -2,13 +2,11 @@ import Vue from 'vue';
import { BootstrapVue, IconsPlugin } from 'bootstrap-vue';
import VueRouter, { RouteConfig } from 'vue-router';
import AttemptList from '@/components/AttemptList.vue';
-import HelloWorld from '@/components/HelloWorld.vue';
import Stats from '@/components/Stats.vue';
import 'bootstrap/dist/css/bootstrap.css';
import 'bootstrap-vue/dist/bootstrap-vue.css';
import '@fontsource/rubik';
import '@fontsource/secular-one';
-import { LoginAttempt } from '@/apiary/apiary';
import App from './App.vue';
Vue.config.productionTip = false;
@@ -19,24 +17,13 @@ Vue.use(IconsPlugin);
Vue.use(VueRouter);
-Vue.use(VueRouter);
-
const routes: Array = [
{
path: '/',
name: 'Home',
- component: HelloWorld,
+ component: Stats,
alias: '/home',
},
- {
- path: '/hello',
- name: 'Hello',
- component: HelloWorld,
- props: {
- default: true,
- msg: 'LOL',
- },
- },
{
path: '/attempts',
name: 'Attempt List',