diff --git a/public/index.html b/public/index.html index d114a2e..54c99b7 100644 --- a/public/index.html +++ b/public/index.html @@ -33,7 +33,6 @@ - diff --git a/src/router/index.ts b/src/router/index.ts index cbda141..f3cdd07 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -8,26 +8,76 @@ const routes: Array = [ path: '/', name: 'patterns-view', component: PatternsView, + meta: { + title: 'Wavelovers', + metaTags: [], + linkTags: [ + { + rel: 'canonical', + href: 'https://wavelovers.ru/', + }, + ], + }, }, { path: '/custom', name: 'custom-view', component: () => import('@/views/CustomView.vue'), + meta: { + title: 'Wavelovers – Custom', + metaTags: [], + linkTags: [ + { + rel: 'canonical', + href: 'https://wavelovers.ru/custom', + }, + ], + }, }, { path: '/manual', name: 'manual-view', component: () => import('@/views/ManualView.vue'), + meta: { + title: 'Wavelovers – Manual', + metaTags: [], + linkTags: [ + { + rel: 'canonical', + href: 'https://wavelovers.ru/manual', + }, + ], + }, }, { path: '/diagnostic', name: 'diagnostic-view', component: () => import('@/views/DiagnosticView.vue'), + meta: { + title: 'Wavelovers – Diagnostic', + metaTags: [], + linkTags: [ + { + rel: 'canonical', + href: 'https://wavelovers.ru/diagnostic', + }, + ], + }, }, { path: '/404', name: '404', component: () => import('@/views/NotFoundView.vue'), + meta: { + title: 'Wavelovers – Page not found', + metaTags: [], + linkTags: [ + { + rel: 'canonical', + href: 'https://wavelovers.ru/404', + }, + ], + }, }, { path: '/:catchAll(.*)*',