Content Partners: dark #0d1520 band matching Industry News section

This commit is contained in:
2026-06-25 14:35:14 +00:00
parent b1baf2fd10
commit 423ec363d5

View File

@@ -69,13 +69,14 @@ export default async function SponsorLogoStrip() {
if (sponsors.length === 0) return null;
return (
<section className="max-w-container mx-auto px-4 py-6 border-t border-b border-[#DCE6F2]" aria-label="Content partners">
<div className="bg-[#0d1520] border-t border-[#DCE6F2]">
<section className="max-w-container mx-auto px-4 py-6 md:py-8" aria-label="Content partners">
<div className="flex items-center gap-4 mb-3">
<span className="text-[10px] uppercase tracking-widest text-[#1D4ED8] font-bold">
Content Partners
</span>
<div className="flex-1 h-px bg-[#DCE6F2]" />
<Link href="/advertise" className="text-[10px] text-[#666] hover:text-[#1D4ED8] font-mono">
<Link href="/advertise" className="text-[10px] text-[#888] hover:text-[#1D4ED8] font-mono">
Advertise
</Link>
</div>
@@ -99,5 +100,6 @@ export default async function SponsorLogoStrip() {
))}
</div>
</section>
</div>
);
}