diff --git a/src/main.ts b/src/main.ts
index 43e4ab8..4cc7f5d 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -4,12 +4,14 @@ import { createApp } from 'vue'
import App from './templates/layouts/Base.vue'
import { createRouter, createWebHistory } from 'vue-router'
import Default from './templates/modules/default/Routes'
+import Documentation from './templates/modules/documentation/Routes'
import Error from './templates/modules/default/Error.vue'
const router = createRouter({
history: createWebHistory(),
routes: [
...Default,
+ ...Documentation,
{ path: '/:pathMatch(.*)*', component: Error }
]
})
diff --git a/src/templates/modules/default/Routes.ts b/src/templates/modules/default/Routes.ts
index 3e7c007..485fc82 100644
--- a/src/templates/modules/default/Routes.ts
+++ b/src/templates/modules/default/Routes.ts
@@ -3,7 +3,6 @@ import Home from './Home.vue'
const routes: RouteRecordRaw[] = [
{ path: '/', component: Home },
- { path: '/documentation', component: Home }
]
export default routes
\ No newline at end of file
diff --git a/src/templates/modules/documentation/Routes.ts b/src/templates/modules/documentation/Routes.ts
new file mode 100644
index 0000000..174f451
--- /dev/null
+++ b/src/templates/modules/documentation/Routes.ts
@@ -0,0 +1,8 @@
+import { RouteRecordRaw } from 'vue-router'
+import Index from './index.vue'
+
+const routes: RouteRecordRaw[] = [
+ { path: '/documentation', component: Index },
+]
+
+export default routes
\ No newline at end of file
diff --git a/src/templates/modules/documentation/index.vue b/src/templates/modules/documentation/index.vue
new file mode 100644
index 0000000..690349b
--- /dev/null
+++ b/src/templates/modules/documentation/index.vue
@@ -0,0 +1,14 @@
+
+
+ dd
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/utils/Navigation.ts b/src/utils/Navigation.ts
index 529a347..3a6aef3 100644
--- a/src/utils/Navigation.ts
+++ b/src/utils/Navigation.ts
@@ -1,5 +1,6 @@
import { NavbarLink } from '../types'
import { github, twitter } from './Icons'
+import { CalendarIcon, ChartBarIcon, FolderIcon, HomeIcon, InboxIcon, UsersIcon } from '@heroicons/vue/outline'
export const links: NavbarLink[] = [
{ label: 'Home', path: '/', local: true },
@@ -10,4 +11,14 @@ export const links: NavbarLink[] = [
export const socials = [
twitter,
github,
-]
\ No newline at end of file
+]
+
+export const documentation = [
+ {
+ label: 'Basic',
+ isMenu: true,
+ child: [
+ { label: 'Getting starting', href: '/documentation/getting-starting', isMenu: true },
+ ]
+ },
+]