LayoutSidebar.vue 501 B

12345678910111213141516
  1. <!-- Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <template>
  3. <!-- TODO: use tw styles, don't rely on "style" block! -->
  4. <div class="p-2 bg-neutral-950 text-neutral-400 flex flex-col h-full">
  5. <div class="text-lg h-10">Zammad</div>
  6. <nav class="links h-full">
  7. <ol>
  8. <li>Link 1</li>
  9. <li>Link 2</li>
  10. <li>Link 3</li>
  11. </ol>
  12. </nav>
  13. <RouterLink class="btn btn-error" to="/logout">Logout</RouterLink>
  14. </div>
  15. </template>