update homepage (#1273)

This commit is contained in:
NotSoToothless
2026-05-27 05:47:32 -07:00
committed by GitHub
parent 95f38a9b0d
commit 9dab5c09ed
+4 -4
View File
@@ -368,14 +368,14 @@
<!-- Supporters --> <!-- Supporters -->
<% if (typeof supporters !== 'undefined' && supporters.length > 0) { %> <% if (typeof supporters !== 'undefined' && supporters.length > 0) { %>
<section class="py-10 border-t border-[rgba(144,238,144,0.06)]"> <section class="py-10">
<div class="max-w-[1400px] mx-auto px-6 lg:px-8"> <div class="max-w-[1400px] mx-auto px-6 lg:px-8">
<p class="text-center text-xs uppercase tracking-widest text-muted opacity-50 mb-5"><%= t('home.supportedBy') %></p> <p class="text-center text-sm uppercase tracking-widest text-muted opacity-70 mb-5"><%= t('home.supportedBy') %></p>
<div class="flex flex-wrap justify-center gap-2"> <div class="flex flex-wrap justify-center gap-2">
<% supporters.forEach(function(sq) { %> <% supporters.forEach(function(sq) { %>
<a href="/squadrons/<%= encodeURIComponent(sq.short) %>" <a href="/squadrons/<%= encodeURIComponent(sq.short) %>"
class="px-3 py-1 rounded-full text-[11px] font-medium border border-[rgba(144,238,144,0.15)] text-muted hover:text-accent hover:border-[rgba(144,238,144,0.35)] transition-colors"> class="px-3 py-1 rounded-full text-xs font-medium border border-[rgba(144,238,144,0.15)] text-muted hover:text-accent hover:border-[rgba(144,238,144,0.35)] transition-colors">
<span class="opacity-60"><%= sq.short %></span> // <%= sq.long %> <span class="opacity-70"><%= sq.short %></span> // <%= sq.long %>
</a> </a>
<% }); %> <% }); %>
</div> </div>