diff --git a/src/components/Footer.vue b/src/components/Footer.vue new file mode 100644 index 0000000..aa9317a --- /dev/null +++ b/src/components/Footer.vue @@ -0,0 +1,40 @@ + + + + \ No newline at end of file diff --git a/src/components/Navbar.vue b/src/components/Navbar.vue index 8411a35..1322336 100644 --- a/src/components/Navbar.vue +++ b/src/components/Navbar.vue @@ -29,27 +29,18 @@
- -
- - Open user menu - - -
- - - - Your Profile - - - Settings - - - Sign out - - - -
+
+ + {{ item.label }} + +
@@ -85,12 +76,7 @@ import { BellIcon, MenuIcon, XIcon } from '@heroicons/vue/outline' import { NavbarLink } from '../types' import NavbarLinkExternal from './NavbarLinkExternal.vue' import NavbarLinkLocal from './NavbarLinkLocal.vue' - -const links: NavbarLink[] = [ - { label: 'Home', path: '/', local: true }, - { label: 'Documentation', path: '/documentation', local: true }, - { label: 'Github', path: '/', local: false } -] +import { socials, links } from '../utils/Navigation'