16 lines
870 B
PHP
16 lines
870 B
PHP
<!-- Sidebar Nav (hidden on mobile, visible on md+) -->
|
|
<nav class="hidden md:flex flex-col gap-2 text-sm font-medium">
|
|
<a href="index.php" class="bg-gray-200 px-4 py-2 rounded hover:bg-gray-300">My Itinerary</a>
|
|
<a href="allsessions.php" class="bg-gray-200 px-4 py-2 rounded hover:bg-gray-300">All Sessions</a>
|
|
<a href="history.php" class="bg-gray-200 px-4 py-2 rounded hover:bg-gray-300">History</a>
|
|
</nav>
|
|
|
|
|
|
<!-- Mobile sticky nav bar (visible only on small screens) -->
|
|
<footer class="fixed bottom-0 left-0 w-full bg-white/90 backdrop-blur border-t p-3 flex justify-around text-sm font-medium text-gray-800 shadow z-50 md:hidden">
|
|
<a href="index.php" class="hover:text-blue-600">My Itinerary</a>
|
|
<a href="allsessions.php" class="hover:text-blue-600">All Sessions</a>
|
|
<a href="history.php" class="hover:text-blue-600">History</a>
|
|
</footer>
|
|
|