Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
Limit mainwhite pattern to the landing hero and a bottom footer band; remove it from sections and page headers. Add vertical water-flow animation and stronger hero particles with hover boost. Fix green text on white sections and card descriptions in green bands, including the two-days program cards. Co-authored-by: Cursor <cursoragent@cursor.com>
21 lines
740 B
TypeScript
21 lines
740 B
TypeScript
import { PartnerLogoPlaceholder } from "@/components/brand/PartnerLogoPlaceholder";
|
|
|
|
export function PartnerMarquee() {
|
|
const slots = Array.from({ length: 8 }, (_, i) => i);
|
|
|
|
return (
|
|
<section className="section-white relative overflow-hidden border-y border-border bg-white py-8 text-[#0d3d26]">
|
|
<p className="mb-6 text-center text-xs font-semibold uppercase tracking-widest text-[#3d5248]">
|
|
With the support of
|
|
</p>
|
|
<div className="overflow-hidden">
|
|
<div className="marquee flex shrink-0 items-center gap-8">
|
|
{[...slots, ...slots].map((i) => (
|
|
<PartnerLogoPlaceholder key={i} size="sm" className="shrink-0" />
|
|
))}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|