<%= csrf_meta_tags %> <%= csp_meta_tag %> <%= stylesheet_link_tag "tailwind", "inter-font", "data-turbo-track": "reload" %> <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> <%= javascript_importmap_tags %> <%= hotwire_livereload_tags if Rails.env.development? %> <%= turbo_refreshes_with method: :morph, scroll: :preserve %> <%= yield :head %>
<%= link_to root_path do %> <%= image_tag 'logo.svg', alt: 'Maybe' %> <% end %>
<%= current_user.email.first %>
Accounts <%= link_to new_account_path, class: 'block hover:bg-gray-100 p-2 text-sm font-semibold text-gray-900 flex items-center rounded' do %> <%= inline_svg_tag('icon-add.svg', class: 'text-gray-500 fill-current') %> <% end %>

Cash

<% current_family.accounts.each do |account| %>
<%= account.name %>

<%= number_to_currency account.balance %>

<% end %>
<%= yield %>