add docs
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-08-11 17:50:52 +03:00
parent d55237f736
commit 4771b374ac
19 changed files with 2042 additions and 55 deletions

View File

@@ -1,11 +1,19 @@
const routes = [
{
name: 'main',
path: '/',
component: () => import('layouts/MainLayout.vue')
},
// Always leave this as last one,
// but you can also remove it
{
name: 'privacy-policy',
path: '/privacy-policy',
component: () => import('pages/DocPage.vue')
},
{
name: 'terms',
path: '/terms-of-use',
component: () => import('pages/DocPage.vue')
},
{
path: '/:catchAll(.*)*',
component: () => import('pages/ErrorNotFound.vue')