<%= link_to signed_in_root_path, class: "navbar-brand" do %> <%= suite_wordmark %> <% end %>

<% if signed_in? %> <% if Current.user.accounts.size > 1 %> <% else %> <%= Current.account.name if Current.account %> <% end %> <% else %> <%= yield :page_title %> <% end %>

<% if signed_in? %>
<%= link_to :profile, class: "text-decoration-none text-reset dropdown-toggle", data: { toggle: "dropdown" } do %> <%= get_name_or_email(Current.user) %> <%= image_or_text_avatar(Current.user) %> <% end %>
<% elsif params[:controller] != "sessions" %> Already Have a ME Suite Account? <%= link_to "Sign In", [:new, :session], class: "btn btn-sm btn-light border" %> <% end %>