-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_supporting_companies.html.erb
More file actions
21 lines (21 loc) · 1.6 KB
/
_supporting_companies.html.erb
File metadata and controls
21 lines (21 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="text-center">
<h3 class="text-2xl font-semibold mb-8">Supporting Companies</h3>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-12">
<%= link_to 'https://clio.com', class: 'group grayscale hover:grayscale-0 transition-all duration-300', target: '_blank', rel: 'noopener' do %>
<%= image_tag "sponsors/clio.png", class: "h-16 md:h-20 w-auto opacity-60 group-hover:opacity-100 transition-opacity", alt: "Clio" %>
<% end %>
<%= link_to 'https://shopify.com', class: 'group grayscale hover:grayscale-0 transition-all duration-300', target: '_blank', rel: 'noopener' do %>
<%= image_tag "sponsors/shopify.png", class: "h-12 md:h-16 w-auto opacity-60 group-hover:opacity-100 transition-opacity", alt: "Shopify" %>
<% end %>
<%= link_to 'https://phoenix.ca/', class: 'group grayscale hover:grayscale-0 transition-all duration-300', target: '_blank', rel: 'noopener' do %>
<%= image_tag "sponsors/phoenix.png", class: "h-16 md:h-20 w-auto opacity-60 group-hover:opacity-100 transition-opacity", alt: "Phoenix" %>
<% end %>
<%= link_to 'https://switchgrowth.com', class: 'group grayscale hover:grayscale-0 transition-all duration-300', target: '_blank', rel: 'noopener' do %>
<%= image_tag "sponsors/switch.png", class: "h-16 md:h-20 w-auto opacity-60 group-hover:opacity-100 transition-opacity", alt: "Switch" %>
<% end %>
</div>
<p class="mt-6 text-sm text-gray-600">
Interested in supporting Toronto Ruby?
<%= link_to "Get in touch", "mailto:info@toronto-ruby.com", class: "text-ruby-500 hover:text-ruby-600 font-medium" %>
</p>
</div>