mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-10 05:42:58 +00:00
55 lines
1.6 KiB
PHP
55 lines
1.6 KiB
PHP
<div class="wa-split">
|
|
<div class="wa-cluster wa-align-items-center">
|
|
<wa-icon-button
|
|
href="{{ route('home') }}"
|
|
name="paw-simple"
|
|
appearance="plain"
|
|
style="font-size: 1.5rem;"
|
|
wire:navigate.hover>
|
|
</wa-icon-button>
|
|
|
|
@auth
|
|
<wa-button appearance="plain" href="{{ route('posts.home') }}" wire:navigate.hover>
|
|
<wa-icon slot="prefix" name="images"></wa-icon>
|
|
Posts
|
|
</wa-button>
|
|
|
|
<wa-button appearance="plain" href="{{ route('upload') }}" wire:navigate.hover>
|
|
<wa-icon slot="prefix" name="arrow-up-from-bracket"></wa-icon>
|
|
Upload
|
|
</wa-button>
|
|
|
|
<wa-button appearance="plain" href="{{ route('tags.home') }}" wire:navigate.hover>
|
|
<wa-icon slot="prefix" name="tags"></wa-icon>
|
|
Tags
|
|
</wa-button>
|
|
|
|
<wa-button appearance="plain" href="{{ route('users') }}" wire:navigate.hover>
|
|
<wa-icon slot="prefix" name="users"></wa-icon>
|
|
Users
|
|
</wa-button>
|
|
@endauth
|
|
</div>
|
|
|
|
<div class="wa-cluster">
|
|
@guest
|
|
<wa-button href="{{ route('login') }}" appearance="plain">
|
|
<wa-icon slot="prefix" name="arrow-right-to-bracket"></wa-icon>
|
|
Sign in
|
|
</wa-button>
|
|
@endguest
|
|
|
|
@auth
|
|
<wa-button href="{{ url('/profiles/' . Auth::id()) }}" appearance="plain" wire:navigate.hover>
|
|
<div class="wa-cluster wa-align-items-center">
|
|
<livewire:app.pfp :user="auth()->user()" size="2rem" shape="rounded" />
|
|
{{ Auth::user()->name }}
|
|
</div>
|
|
</wa-button>
|
|
<wa-button href="{{ route('logout') }}" appearance="plain">
|
|
<wa-icon name="arrow-left-from-bracket" slot="prefix"></wa-icon>
|
|
Sign out
|
|
</wa-button>
|
|
@endauth
|
|
</div>
|
|
</div>
|