• <%= link_to 'Imports', imports_url %>
  • <%= link_to 'Points', points_url %>
  • <%= link_to 'Stats', stats_url %>
<%= link_to 'DaWarIch', root_path, class: 'btn btn-ghost normal-case text-xl mr-10'%>
  • <%= link_to 'Imports', imports_url %>
  • <%= link_to 'Points', points_url %>
  • <%= link_to 'Stats', stats_url %>
<%# menu menu-sm dropdown-content mt-3 z-[1] p-2 shadow bg-base-100 rounded-box w-52 %>
    <% if user_signed_in? %>
  • <%= "#{current_user.email}" %>
    • <%= link_to 'Settings', edit_user_registration_path %>
    • <%= link_to 'Logout', destroy_user_session_path, method: :delete, data: { turbo_method: :delete } %>
  • <% else %>
  • <%= link_to 'Login', new_user_session_path %>
  • <%= link_to 'Register', new_user_registration_path %>
  • <% end %>