<% if notice.present? %>

<%= notice %>

<% end %> <% content_for :title, "Users" %>

Users

<%= link_to "New user", new_user_path, class: "rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium" %>
<% @users.each do |user| %> <%= render user %>

<%= link_to "Show this user", user, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>

<% end %>