From 2cd7d0f3e7138e1190a2f736b0a93cff12d2dd3d Mon Sep 17 00:00:00 2001 From: Freeze455 Date: Tue, 17 Aug 2021 10:20:28 +0200 Subject: [PATCH] :construction: Work in progress --- src/components/Footer.vue | 40 ++++++++++++++++++++++ src/components/Navbar.vue | 40 ++++++++-------------- src/templates/layouts/Base.vue | 35 ++++++++++--------- src/utils/Icons.ts | 61 ++++++++++++++++++++++++++++++++++ src/utils/Navigation.ts | 13 ++++++++ src/utils/icons.ts | 4 --- 6 files changed, 146 insertions(+), 47 deletions(-) create mode 100644 src/components/Footer.vue create mode 100644 src/utils/Icons.ts create mode 100644 src/utils/Navigation.ts delete mode 100644 src/utils/icons.ts 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 - - - -
+
@@ -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'