_BottomNavbar.cshtml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. @using LotteryWebApp.Languages
  2. @{
  3. var activePage = ViewData["ActiveTab"] as string ?? "Home";
  4. }
  5. <!-- Bottom navigation (fixed at bottom) -->
  6. <nav class="navigation absolute inset-x-3 bottom-3 z-20 px-3 py-2 rounded-2xl">
  7. <div class="flex items-center justify-between">
  8. <a href="/Millions/Home/GameHome" class="nav-item @(activePage == "Home" ? "active" : "") flex flex-col items-center flex-1 no-underline">
  9. <img src="/Millions/assets/icons/nav-home.png" alt="" class="w-7 h-7"/>
  10. <span class="text-xs mt-1 @(activePage == "Home" ? "text-[#0062ff] font-semibold" : "text-gray-700")">Home</span>
  11. @if(activePage == "Home") {
  12. <span class="w-5 h-1 bg-[#0062ff] rounded-full mt-1"></span>
  13. }
  14. </a>
  15. <a href="/Millions/Home/Rule" class="nav-item @(activePage == "Rule" ? "active" : "") flex flex-col items-center flex-1 no-underline">
  16. <img src="/Millions/assets/icons/nav-rule.png" alt="" class="w-7 h-7"/>
  17. <span class="text-xs mt-1 @(activePage == "Rule" ? "text-[#0062ff] font-semibold" : "text-gray-700")">Rule</span>
  18. @if(activePage == "Rule") {
  19. <span class="w-5 h-1 bg-[#0062ff] rounded-full mt-1"></span>
  20. }
  21. </a>
  22. <a href="/Millions/Home/History" class="nav-item @(activePage == "History" ? "active" : "") flex flex-col items-center flex-1 no-underline">
  23. <img src="/Millions/assets/icons/nav-history.png" alt="" class="w-7 h-7"/>
  24. <span class="text-xs mt-1 @(activePage == "History" ? "text-[#0062ff] font-semibold" : "text-gray-700")">History</span>
  25. @if(activePage == "History") {
  26. <span class="w-5 h-1 bg-[#0062ff] rounded-full mt-1"></span>
  27. }
  28. </a>
  29. <a href="/Millions/Home/FAQ" class="nav-item @(activePage == "FAQ" ? "active" : "") flex flex-col items-center flex-1 no-underline">
  30. <img src="/Millions/assets/icons/nav-faq.png" alt="" class="w-7 h-7"/>
  31. <span class="text-xs mt-1 @(activePage == "FAQ" ? "text-[#0062ff] font-semibold" : "text-gray-700")">FAQ</span>
  32. @if(activePage == "FAQ") {
  33. <span class="w-5 h-1 bg-[#0062ff] rounded-full mt-1"></span>
  34. }
  35. </a>
  36. <a href="/Millions/Home/More" class="nav-item @(activePage == "More" ? "active" : "") flex flex-col items-center flex-1 no-underline">
  37. <img src="/Millions/assets/icons/nav-more.png" alt="" class="w-7 h-7"/>
  38. <span class="text-xs mt-1 @(activePage == "More" ? "text-[#0062ff] font-semibold" : "text-gray-700")">More</span>
  39. @if(activePage == "More") {
  40. <span class="w-5 h-1 bg-[#0062ff] rounded-full mt-1"></span>
  41. }
  42. </a>
  43. </div>
  44. </nav>