mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-10 05:42:58 +00:00
Add proper mobile nav; update mongodb package ver
This commit is contained in:
parent
1e19f79af1
commit
4c58b94f96
10 changed files with 195 additions and 12 deletions
28
resources/views/livewire/app/nav-menu.blade.php
Normal file
28
resources/views/livewire/app/nav-menu.blade.php
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<div class="wa-stack">
|
||||
<a href="{{ route('home') }}" class="wa-cluster" style="font-size: 1.5rem;" wire:navigate.hover>
|
||||
<wa-icon name="paw-simple"></wa-icon>
|
||||
{{ config('app.name') }}
|
||||
</a>
|
||||
|
||||
@auth
|
||||
<a href="{{ route('posts.home') }}" class="wa-cluster" wire:navigate.hover>
|
||||
<wa-icon name="images"></wa-icon>
|
||||
Posts
|
||||
</a>
|
||||
|
||||
<a href="{{ route('upload') }}" class="wa-cluster" wire:navigate.hover>
|
||||
<wa-icon name="arrow-up-from-bracket"></wa-icon>
|
||||
Upload
|
||||
</a>
|
||||
|
||||
<a href="{{ route('tags.home') }}" class="wa-cluster" wire:navigate.hover>
|
||||
<wa-icon name="tags"></wa-icon>
|
||||
Tags
|
||||
</a>
|
||||
|
||||
<a href="{{ route('users') }}" class="wa-cluster" wire:navigate.hover>
|
||||
<wa-icon name="users"></wa-icon>
|
||||
Users
|
||||
</a>
|
||||
@endauth
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue