• <%= link_to 'Points', points_url %>
  • <%= link_to 'Stats', stats_url %>
  • <%= link_to 'Imports', imports_url %>
<%= link_to 'DaWarIch', root_path, class: 'btn btn-ghost normal-case text-xl'%>
<%= app_version %> <% if new_version_available? %>  ! <% end %>
<% if user_signed_in? %> <% if current_user.theme == 'light' %> <%= link_to settings_theme_path(theme: 'dark'), data: { turbo: false }, class: 'btn btn-ghost' do %> <% end %> <% else %> <%= link_to settings_theme_path(theme: 'light'), data: { turbo: false }, class: 'btn btn-ghost' do %> <% end %> <% end %> <% end %>
  • <%= link_to 'Points', points_url %>
  • <%= link_to 'Stats', stats_url %>
  • <%= link_to 'Imports', imports_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 'Your data', export_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 %>