You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1010 B
PHTML
23 lines
1010 B
PHTML
<nav>
|
|
<!-- Primary Navigation Menu -->
|
|
<div class="my-4">
|
|
<div class="flex flex-row gap-x-1 md:gap-x-2 text-xl font-ibm whitespace-nowrap">
|
|
|
|
<x-nav-button class="text-red-400 shadow-red-950"
|
|
:active="request()->routeIs('dashboard')">Home
|
|
</x-nav-button>
|
|
<x-nav-button class="text-yellow-300 shadow-yellow-950">About Me</x-nav-button>
|
|
<x-nav-button class="text-green-400 shadow-green-950">Projects</x-nav-button>
|
|
<x-nav-button class="text-blue-400 shadow-blue-950">Blog</x-nav-button>
|
|
|
|
{{-- <div class="filter drop-shadow-pixel-sm w-full">--}}
|
|
{{-- <div class="py-1 px-3 bg-zinc-800 w-full h-full shadow-pixel-sm pixel-corner-sm"></div>--}}
|
|
{{-- </div>--}}
|
|
|
|
<div class="ml-auto">
|
|
<x-nav-button class="text-shadow-sm shadow-black">niisse.net</x-nav-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|