Skip to content

Commit

Permalink
better navigation bar (#16)
Browse files Browse the repository at this point in the history
* better navigation bar

* update
  • Loading branch information
kianenigma authored Oct 6, 2024
1 parent b145fca commit 4f4e239
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/phoenix_app_web/templates/layout/root.html.heex
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@
<li>
<%= link "Home", to: Routes.page_path(@conn, :index), class: "text-indigo-600 hover:text-blue-300" %>
</li>
<li>
<%= link "Tech", to: Routes.page_path(@conn, :tech), class: "text-indigo-600 hover:text-blue-300" %>
</li>
<li>
<%= link "Spec", to: Routes.page_path(@conn, :spec), class: "text-indigo-600 hover:text-blue-300" %>
</li>
<li>
<%= link "Clients", to: Routes.team_path(@conn, :index), class: "text-indigo-600 hover:text-blue-300" %>
</li>
<%= if function_exported?(Routes, :live_dashboard_path, 2) do %>
<li><%= link "LiveDashboard", to: Routes.live_dashboard_path(@conn, :home), class: "text-indigo-600 hover:text-blue-300" %></li>
<% end %>
Expand Down

0 comments on commit 4f4e239

Please sign in to comment.