<% if notice.present? %>
<% end %>
<% content_for :title, t('.title') %>
<%= t('.title') %>
<%= link_to new_company_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_company') %>
<% end %>
<% @companies.each do |company| %>
<%= link_to company, class: "block transition-all duration-200 hover:shadow-lg hover:-translate-y-1" do %>
<%= render company %>
<% end %>
<% end %>