refactoring permission banner

This commit is contained in:
msramalho
2025-02-06 20:11:27 +00:00
parent ddb803a82f
commit 021d2587fc
8 changed files with 67 additions and 47 deletions

View File

@@ -1,8 +1,8 @@
import { createRouter, createWebHistory } from 'vue-router';
import HomeView from '../views/HomeView.vue';
import ArchivesView from '../views/ArchivesView.vue';
import ArchiveSearchView from '../views/ArchiveSearchView.vue';
import ArchiveUrl from "../components/ArchiveUrl.vue";
import ArchiveUrlView from "../views/ArchiveUrlView.vue";
const routes = [
{
@@ -13,12 +13,12 @@ const routes = [
{
path: '/url',
name: 'URL Archiving',
component: ArchiveUrl,
component: ArchiveUrlView,
},
{
path: '/archives',
name: 'Archives search',
component: ArchivesView,
component: ArchiveSearchView,
},
{
path: '/privacy',