Update src with privacy policy and tos

This commit is contained in:
Logan Williams
2023-10-25 16:25:29 +02:00
parent d2e6d26063
commit 4b4f006750
8 changed files with 896 additions and 9 deletions

View File

@@ -10,6 +10,18 @@ const routes = [
name: "home",
component: HomeView,
},
{
path: "/privacy",
name: "Privacy Policy",
component: () =>
import(/* webpackChunkName: "privacy" */ "../views/PrivacyView.vue"),
},
{
path: "/tos",
name: "Terms of Use",
component: () =>
import(/* webpackChunkName: "tos" */ "../views/TOSView.vue"),
},
];
const router = new VueRouter({