<% if signed_in? %>
    
      <% if Docuseal.demo? %>
        <%= render 'shared/github_button' %>
      <% else %>
        <%= link_to 'Settings', settings_profile_index_path, class: 'hidden md:inline font-medium text-lg mr-2' %>
      <% end %>
      
        
        
          - 
            <%= link_to settings_profile_index_path do %>
              <%= svg_icon('adjustments', class: 'w-5 h-5 stroke-2') %>
              Profile
            <% end %>
          
- 
            <%= button_to destroy_user_session_path, method: :delete, data: { turbo: false } do %>
              <%= svg_icon('logout', class: 'w-5 h-5 stroke-2 inline') %>
              Sign out
            <% end %>
          
 
    
      <%= link_to new_user_session_path, class: 'font-medium text-lg' do %>
        
          <%= svg_icon('login', class: 'w-6 h-6') %>
          Sign in
        
      <% end %>
      <% if Docuseal.multitenant? %>
        <%= link_to registration_path, class: 'font-medium text-lg' do %>
          
            <%= svg_icon('user_plus', class: 'w-6 h-6') %>
            Try for Free
          
        <% end %>
      <% end %>
    
  <% end %>