mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
Adds placeholder menu items
This commit is contained in:
parent
03f6305e72
commit
3fb541edf1
@ -12,7 +12,14 @@
|
|||||||
|
|
||||||
{{-- Navigation Links --}}
|
{{-- Navigation Links --}}
|
||||||
<div class="hidden space-x-8 sm:-my-px sm:ms-10 sm:flex">
|
<div class="hidden space-x-8 sm:-my-px sm:ms-10 sm:flex">
|
||||||
{{-- <x-nav-link href="{{ route('mods') }}" :active="request()->routeIs('mods')">{{ __('Mods') }}</x-nav-link> --}}
|
@auth
|
||||||
|
<x-nav-link href="#">{{ __('Dashboard') }}</x-nav-link>
|
||||||
|
@endauth
|
||||||
|
<x-nav-link href="#">{{ __('About') }}</x-nav-link>
|
||||||
|
<x-nav-link href="#">{{ __('Articles') }}</x-nav-link>
|
||||||
|
<x-nav-link href="#">{{ __('Documentation') }}</x-nav-link>
|
||||||
|
<x-nav-link href="{{ route('mods') }}" :active="request()->routeIs('mods')">{{ __('Mods') }}</x-nav-link>
|
||||||
|
<x-nav-link href="#">{{ __('Support') }}</x-nav-link>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -35,7 +42,7 @@
|
|||||||
|
|
||||||
@guest
|
@guest
|
||||||
<div class="ml-4">
|
<div class="ml-4">
|
||||||
<a href="{{ route('login') }}" class="text-sm font-semibold leading-6 text-gray-900 dark:text-gray-100">Log in
|
<a href="{{ route('login') }}" class="text-sm font-semibold leading-6 text-gray-900 dark:text-gray-100 whitespace-nowrap">Log in
|
||||||
<span aria-hidden="true">→</span></a>
|
<span aria-hidden="true">→</span></a>
|
||||||
</div>
|
</div>
|
||||||
@endguest
|
@endguest
|
||||||
@ -100,14 +107,14 @@
|
|||||||
{{-- Responsive Navigation Menu --}}
|
{{-- Responsive Navigation Menu --}}
|
||||||
<div :class="{'block': open, 'hidden': ! open}" class="hidden sm:hidden">
|
<div :class="{'block': open, 'hidden': ! open}" class="hidden sm:hidden">
|
||||||
<div class="pt-2 pb-3 space-y-1">
|
<div class="pt-2 pb-3 space-y-1">
|
||||||
<x-responsive-nav-link href="{{ route('home') }}" :active="request()->routeIs('home')">
|
|
||||||
{{ __('Home') }}
|
|
||||||
</x-responsive-nav-link>
|
|
||||||
@auth()
|
@auth()
|
||||||
<x-responsive-nav-link href="{{ route('dashboard') }}" :active="request()->routeIs('dashboard')">
|
<x-responsive-nav-link href="{{ route('dashboard') }}" :active="request()->routeIs('dashboard')">{{ __('Dashboard') }}</x-responsive-nav-link>
|
||||||
{{ __('Dashboard') }}
|
|
||||||
</x-responsive-nav-link>
|
|
||||||
@endauth
|
@endauth
|
||||||
|
<x-responsive-nav-link href="#">{{ __('About') }}</x-responsive-nav-link>
|
||||||
|
<x-responsive-nav-link href="#">{{ __('Articles') }}</x-responsive-nav-link>
|
||||||
|
<x-responsive-nav-link href="#">{{ __('Documentation') }}</x-responsive-nav-link>
|
||||||
|
<x-responsive-nav-link href="{{ route('mods') }}" :active="request()->routeIs('mods')">{{ __('Mods') }}</x-responsive-nav-link>
|
||||||
|
<x-responsive-nav-link href="#">{{ __('Support') }}</x-responsive-nav-link>
|
||||||
</div>
|
</div>
|
||||||
{{-- Responsive Settings Options --}}
|
{{-- Responsive Settings Options --}}
|
||||||
<div class="pt-4 pb-1 border-t border-gray-200 dark:border-gray-700">
|
<div class="pt-4 pb-1 border-t border-gray-200 dark:border-gray-700">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user