GRV-Summit-Site/components/home/PartnerMarquee.tsx
“kirukib” efa48f6f6b
Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
Refine topography to hero and footer, improve readability and hero motion.
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>
2026-05-21 14:29:39 +03:00

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>
);
}