summaryrefslogtreecommitdiff
path: root/source/_nav/menu.blade.php
diff options
context:
space:
mode:
Diffstat (limited to 'source/_nav/menu.blade.php')
-rw-r--r--source/_nav/menu.blade.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/source/_nav/menu.blade.php b/source/_nav/menu.blade.php
new file mode 100644
index 0000000..b8708d8
--- /dev/null
+++ b/source/_nav/menu.blade.php
@@ -0,0 +1,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>