Adds placeholder menu items

This commit is contained in:
Refringe 2024-06-11 21:36:23 -04:00
parent 03f6305e72
commit 3fb541edf1
Signed by: Refringe
GPG Key ID: 7715B85B4A6306ED

View File

@ -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">&rarr;</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">