diff --git a/lib/memex_web/components/topbar.ex b/lib/memex_web/components/topbar.ex
index 679bead..5506e00 100644
--- a/lib/memex_web/components/topbar.ex
+++ b/lib/memex_web/components/topbar.ex
@@ -35,36 +35,36 @@ defmodule MemexWeb.Components.Topbar do
+ -
+ <.link
+ navigate={Routes.note_index_path(Endpoint, :index)}
+ class="text-primary-400 text-primary-400 hover:underline truncate"
+ >
+ <%= gettext("notes") %>
+
+
+
+ -
+ <.link
+ navigate={Routes.context_index_path(Endpoint, :index)}
+ class="text-primary-400 text-primary-400 hover:underline truncate"
+ >
+ <%= gettext("contexts") %>
+
+
+
+ -
+ <.link
+ navigate={Routes.pipeline_index_path(Endpoint, :index)}
+ class="text-primary-400 text-primary-400 hover:underline truncate"
+ >
+ <%= gettext("pipelines") %>
+
+
+
+ -
+
<%= if @current_user do %>
- -
- <.link
- navigate={Routes.note_index_path(Endpoint, :index)}
- class="text-primary-400 text-primary-400 hover:underline truncate"
- >
- <%= gettext("notes") %>
-
-
-
- -
- <.link
- navigate={Routes.context_index_path(Endpoint, :index)}
- class="text-primary-400 text-primary-400 hover:underline truncate"
- >
- <%= gettext("contexts") %>
-
-
-
- -
- <.link
- navigate={Routes.pipeline_index_path(Endpoint, :index)}
- class="text-primary-400 text-primary-400 hover:underline truncate"
- >
- <%= gettext("pipelines") %>
-
-
-
- -
-
<%= if @current_user.role == :admin do %>
-
<.link