<%= link_to root_path, class: "mr-8" do %>
<%= image_tag "logo.svg", alt: "Family Funds Logo", class: "h-8" %>
<% end %>
<% if Current.user.registered? %>
- <%= link_to "Dashboard", root_path, class: "text-white" %>
- <%= link_to "Expenses", expenses_path, class: "text-white" %>
- <%= link_to "Credit Card Bills", credit_card_bills_path, class: "text-white" %>
- <%= link_to "Incomes", incomes_path, class: "text-white" %>
- <%= link_to "Members", members_path, class: "text-white" %>
- <%= link_to "Log out", session_path, data: {turbo_method: :delete}, class: "text-white" %>
<% else %>
- <%= link_to "Sign up", new_user_path, class: "text-white" %>
- <%= link_to "Log in", new_session_path, class: "text-white" %>
<% end %>