This commit is contained in:
Adrian Hopek
2022-01-14 07:44:12 +01:00
parent 63f5a28794
commit d4f43421cd
6 changed files with 202 additions and 7 deletions

View File

@@ -152,7 +152,7 @@
<div>
<img
class="h-8 w-auto"
src="https://tailwindui.com/img/logos/workflow-mark-cyan-600.svg"
src="/img/logo-white.png"
alt="Workflow"
>
</div>
@@ -184,7 +184,7 @@
<div class="flex-shrink-0">
<img
class="h-10 w-10 rounded-full"
:src="user.imageUrl"
:src="user.avatar"
alt=""
>
</div>
@@ -265,8 +265,8 @@ export default {
setup() {
const user = computed(() => usePage().props.value.auth.user);
const navigation = [
{name: 'Home', href: '/', current: true},
{name: 'Profile', href: '#', current: false},
{name: 'Dashboard', href: '/', current: true},
{name: 'Użytkownicy', href: '/users', current: false},
{name: 'Resources', href: '#', current: false},
{name: 'Company Directory', href: '#', current: false},
{name: 'Openings', href: '#', current: false},
@@ -274,7 +274,7 @@ export default {
const userNavigation = [
{name: 'Your Profile', href: '#'},
{name: 'Settings', href: '#'},
{name: 'Sign out', href: '/logout', method: 'post', as: 'button'},
{name: 'Wyloguj się', href: '/logout', method: 'post', as: 'button'},
];
return {