DashboardNav.svelte 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <script>
  2. import favicon from "$lib/assets/favicon.png";
  3. </script>
  4. <header>
  5. <a href="/dashboard" class="logo">
  6. <img src={favicon} alt="ChatRPG logo" width="32" height="32" />
  7. <span>ChatRPG</span>
  8. </a>
  9. <nav>
  10. <a href="/dashboard/tokens" class="nav-link">Tokens</a>
  11. <a href="/dashboard/games" class="nav-link">Games</a>
  12. </nav>
  13. </header>
  14. <style>
  15. header {
  16. display: flex;
  17. align-items: center;
  18. justify-content: space-between;
  19. padding: 0 2rem;
  20. height: 64px;
  21. border-bottom: 1px solid #1e1e28;
  22. position: sticky;
  23. top: 0;
  24. background: rgba(11, 11, 16, 0.85);
  25. backdrop-filter: blur(12px);
  26. z-index: 50;
  27. }
  28. .logo {
  29. display: flex;
  30. align-items: center;
  31. gap: 10px;
  32. text-decoration: none;
  33. color: #e5e5ea;
  34. font-weight: 700;
  35. font-size: 18px;
  36. letter-spacing: -0.5px;
  37. }
  38. nav {
  39. display: flex;
  40. align-items: center;
  41. gap: 0.25rem;
  42. }
  43. .nav-link {
  44. padding: 0.4rem 0.9rem;
  45. border-radius: 8px;
  46. font-size: 0.9rem;
  47. font-weight: 500;
  48. color: #a1a1aa;
  49. text-decoration: none;
  50. transition: background 0.15s, color 0.15s;
  51. }
  52. .nav-link:hover {
  53. background: #1a1a24;
  54. color: #e5e5ea;
  55. }
  56. </style>