38 lines
3.3 KiB
PHP
38 lines
3.3 KiB
PHP
<div class="flex flex-col">
|
|
@include('user.partials.profile')
|
|
|
|
<div
|
|
class="overflow-hidden mt-5 relative max-w-sm min-w-80 mx-auto bg-white/40 shadow-lg ring-1 ring-black/5 rounded-xl items-center gap-6 dark:bg-neutral-950/40 backdrop-blur dark:highlight-white/5">
|
|
<div class="flex flex-col p-2">
|
|
<a href="{{ route('profile.show') }}"
|
|
class="block cursor-pointer w-full px-4 py-2 rounded-lg text-left text-lg leading-5 text-gray-700 dark:text-gray-300 @if (request()->routeIs('profile.show')) bg-rose-900/40 @endif hover:bg-neutral-100/60 dark:hover:bg-neutral-900/60 focus:outline-none focus:bg-neutral-100 dark:focus:bg-neutral-800 transition duration-150 ease-in-out"><i
|
|
class="fa-solid fa-user pr-4"></i> {{ __('nav.profile') }}</a>
|
|
|
|
<a href="{{ route('profile.notifications') }}"
|
|
class="block cursor-pointer w-full px-4 py-2 rounded-lg text-left text-lg leading-5 text-gray-700 dark:text-gray-300 @if (request()->routeIs('profile.notifications')) bg-rose-900/40 @endif hover:bg-neutral-100/60 dark:hover:bg-neutral-900/60 focus:outline-none focus:bg-neutral-100 dark:focus:bg-neutral-800 transition duration-150 ease-in-out"><i
|
|
class="fa-solid fa-bell pr-4"></i> Notifications</a>
|
|
|
|
<a href="{{ route('profile.likes') }}"
|
|
class="block cursor-pointer w-full px-4 py-2 rounded-lg text-left text-lg leading-5 text-gray-700 dark:text-gray-300 @if (request()->routeIs('profile.likes')) bg-rose-900/40 @endif hover:bg-neutral-100/60 dark:hover:bg-neutral-900/60 focus:outline-none focus:bg-neutral-100 dark:focus:bg-neutral-800 transition duration-150 ease-in-out"><i
|
|
class="fa-solid fa-heart pr-4"></i> {{ __('nav.likes') }}</a>
|
|
|
|
<a href="{{ route('user.watched') }}"
|
|
class="block cursor-pointer w-full px-4 py-2 rounded-lg text-left text-lg leading-5 text-gray-700 dark:text-gray-300 @if (request()->routeIs('user.watched')) bg-rose-900/40 @endif hover:bg-neutral-100/60 dark:hover:bg-neutral-900/60 focus:outline-none focus:bg-neutral-100 dark:focus:bg-neutral-800 transition duration-150 ease-in-out"><i
|
|
class="fa-solid fa-eye pr-4"></i>
|
|
{{ __('nav.watched') }}</a>
|
|
|
|
<a href="{{ route('profile.comments') }}"
|
|
class="block cursor-pointer w-full px-4 py-2 rounded-lg text-left text-lg leading-5 text-gray-700 dark:text-gray-300 @if (request()->routeIs('profile.comments')) bg-rose-900/40 @endif hover:bg-neutral-100/60 dark:hover:bg-neutral-900/60 focus:outline-none focus:bg-neutral-100 dark:focus:bg-neutral-800 transition duration-150 ease-in-out"><i
|
|
class="fa-solid fa-comment pr-4"></i>
|
|
{{ __('nav.comments') }}</a>
|
|
|
|
<a href="{{ route('profile.playlists') }}"
|
|
class="block cursor-pointer w-full px-4 py-2 rounded-lg text-left text-lg leading-5 text-gray-700 dark:text-gray-300 @if (request()->routeIs('profile.playlists')) bg-rose-900/40 @endif hover:bg-neutral-100/60 dark:hover:bg-neutral-900/60 focus:outline-none focus:bg-neutral-100 dark:focus:bg-neutral-800 transition duration-150 ease-in-out"><i
|
|
class="fa-solid fa-rectangle-list pr-4"></i>
|
|
{{ __('nav.playlists') }}</a>
|
|
</div>
|
|
</div>
|
|
|
|
@include('user.partials.actions')
|
|
</div>
|