aboutsummaryrefslogtreecommitdiff
path: root/src/router
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2021-04-13 12:49:14 -0500
committerFurkan Sahin <furkan-dev@proton.me>2021-04-13 12:49:14 -0500
commit65d0dbb9b3388e03c312c1dd456feeef740289e0 (patch)
tree9916793d0b760eb62b4102ca151c4802ea6e44ee /src/router
parent6a152d5cf5f35bc58fc4b659fe6edcb6f94f760c (diff)
Start styling and add initial dark mode support
Diffstat (limited to 'src/router')
-rw-r--r--src/router/index.ts6
1 files changed, 3 insertions, 3 deletions
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',