18 lines
850 B
PHP
18 lines
850 B
PHP
<nav class="flex flex-col gap-2 text-sm font-medium">
|
|
|
|
<!-- Mobile sticky nav: hidden on md+ -->
|
|
<div class="hidden md:flex flex-col gap-2">
|
|
<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>
|
|
</div>
|
|
|
|
<!-- Sidebar nav: hidden on mobile -->
|
|
<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">
|
|
<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>
|
|
</div>
|
|
|
|
</nav>
|