<%= render partial: "shared/icons/comet", locals: { custom_class: "inline-block align-top w-auto h-7" } %>
<% if user_signed_in? && current_user.confirmed? %>
<% if @context == :admin %>
<%= render partial: 'shared/admin_nav' %>
<% else %>
<%= render partial: 'shared/main_nav' %>
<% end %>
<% end %>
<% if user_signed_in? %>
<%= current_user.address %>
<%= link_to "Log out", destroy_user_session_path, class: 'underline hover:text-white' %>
<% elsif !user_signed_in? && controller_name != 'sessions' %>
<%= link_to "Log in", new_user_session_path, class: 'underline hover:text-white' %>
<% end %>
<% if user_signed_in? && current_user.confirmed? %>
<% elsif !user_signed_in? && controller_name != 'sessions' %>
<%= link_to "Log in", new_user_session_path,
class: 'block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-900/30 active:text-white active:bg-gray-900/30' %>
<% end %>