mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-12 20:20:41 -05:00
Adds placeholder menu items
This commit is contained in:
parent
03f6305e72
commit
3fb541edf1
@ -12,7 +12,14 @@
|
||||
|
||||
{{-- Navigation Links --}}
|
||||
<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>
|
||||
|
||||
@ -35,7 +42,7 @@
|
||||
|
||||
@guest
|
||||
<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>
|
||||
</div>
|
||||
@endguest
|
||||
@ -100,14 +107,14 @@
|
||||
{{-- Responsive Navigation Menu --}}
|
||||
<div :class="{'block': open, 'hidden': ! open}" class="hidden sm:hidden">
|
||||
<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()
|
||||
<x-responsive-nav-link href="{{ route('dashboard') }}" :active="request()->routeIs('dashboard')">
|
||||
{{ __('Dashboard') }}
|
||||
</x-responsive-nav-link>
|
||||
<x-responsive-nav-link href="{{ route('dashboard') }}" :active="request()->routeIs('dashboard')">{{ __('Dashboard') }}</x-responsive-nav-link>
|
||||
@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>
|
||||
{{-- Responsive Settings Options --}}
|
||||
<div class="pt-4 pb-1 border-t border-gray-200 dark:border-gray-700">
|
||||
|
Loading…
x
Reference in New Issue
Block a user