+ add terms-view-component

+  add oai links
This commit is contained in:
Arno Kaimbacher 2021-12-06 14:11:20 +01:00
parent 8cb8f29e5e
commit aded19b6a0
7 changed files with 266 additions and 4 deletions

View file

@ -7,6 +7,7 @@ import OaiViewComponent from "@/views/oai-view/oai-view-component.vue";
import ContactViewComponent from "@/views/contact-view/contact-view-component.vue";
import SitelinkViewComponent from "@/views/sitelink-view/sitelink-view-component.vue";
import ImprintViewComponent from "@/views/imprint-view/imprint-view-component.vue";
import TermsViewComponent from "@/views/terms-view/terms-view-component.vue";
const routes = [
{
@ -49,6 +50,11 @@ const routes = [
name: "Imprint",
component: ImprintViewComponent,
},
{
path: "/terms-and-conditions",
name: "Terms",
component: TermsViewComponent,
},
];
const router = createRouter({