blob: b8708d81c3d1e6d4cb8b2ef7509696a7cbcc4433 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<nav class="hidden lg:flex items-center justify-end text-lg">
<a title="{{ $page->siteName }} Blog" href="/blog"
class="ml-6 text-gray-700 hover:text-blue-600 {{ $page->isActive('/blog') ? 'active text-blue-600' : '' }}">
Blog
</a>
<a title="{{ $page->siteName }} About" href="/about"
class="ml-6 text-gray-700 hover:text-blue-600 {{ $page->isActive('/about') ? 'active text-blue-600' : '' }}">
About
</a>
<a title="{{ $page->siteName }} Contact" href="/contact"
class="ml-6 text-gray-700 hover:text-blue-600 {{ $page->isActive('/contact') ? 'active text-blue-600' : '' }}">
Contact
</a>
</nav>
|