From 65d0dbb9b3388e03c312c1dd456feeef740289e0 Mon Sep 17 00:00:00 2001 From: Furkan Sahin Date: Tue, 13 Apr 2021 12:49:14 -0500 Subject: Start styling and add initial dark mode support --- src/router/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/router/index.ts') diff --git a/src/router/index.ts b/src/router/index.ts index 7a598b3..a36cb7e 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -1,12 +1,12 @@ import { createRouter, createWebHashHistory } from 'vue-router'; import Editor from '../views/Editor.vue'; -import About from '../views/About.vue'; +import Start from '../views/Start.vue'; const routes = [ { path: '/', - name: 'About', - component: About, + name: 'Start', + component: Start, }, { path: '/editor', -- cgit v1.2.3