diff --git a/src/layouts/base.layout.vue b/src/layouts/base.layout.vue index dfc2d4f9..4a2883dd 100644 --- a/src/layouts/base.layout.vue +++ b/src/layouts/base.layout.vue @@ -2,7 +2,7 @@ import { NIcon } from 'naive-ui'; import { h, ref, type Component } from 'vue'; import { RouterLink, useRoute } from 'vue-router'; -import { Heart, BrandGithub, BrandTwitter, Moon, Sun, Menu2, Home2 } from '@vicons/tabler' +import { Heart, BrandGithub, BrandTwitter, Moon, Sun, Menu2, Home2, InfoCircle } from '@vicons/tabler' import { toolsByCategory } from '@/tools'; import SearchBar from '../components/SearchBar.vue'; import { useStyleStore } from '@/stores/style.store'; @@ -86,6 +86,26 @@ const m = toolsByCategory.map(category => ({ :component="BrandTwitter" /> + + + + + ({ :component="BrandTwitter" /> + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/router.ts b/src/router.ts index 1149f8b6..e4a0a932 100644 --- a/src/router.ts +++ b/src/router.ts @@ -17,6 +17,11 @@ const router = createRouter({ name: 'home', component: HomePage, }, + { + path: '/about', + name: 'about', + component: () => import('./pages/About.vue'), + }, ...toolsRoutes, ...toolsRedirectRoutes, { path: '/:pathMatch(.*)*', name: 'NotFound', component: NotFound },