<% if notice.present? %>

<%= notice %>

<% end %> <% content_for :title, t('.title') %>

<%= t('.title') %>

<%= link_to new_team_path, class: "rounded-lg py-3 px-5 bg-blue-600 text-white font-medium hover:bg-blue-700 transition-colors duration-200 flex items-center" do %> <%= t('.new_team') %> <% end %>
<% @teams.each do |team| %> <%= link_to team, class: "block transition-all duration-200 hover:shadow-lg hover:-translate-y-1" do %> <%= render team %> <% end %> <% end %>