This commit is contained in:
Mackie 2026-05-29 09:23:37 +08:00
parent 3dc4d15861
commit f627a6ef89

View file

@ -307,8 +307,15 @@ function LogosSection({ isDark }: { isDark: boolean }) {
{/* Marquee track */} {/* Marquee track */}
<div style={{ overflow: 'hidden', width: '100%' }}> <div style={{ overflow: 'hidden', width: '100%' }}>
<div style={{ display: 'flex', width: 'max-content', animation: 'marquee 35s linear infinite' }}> <div
{[...LOGOS, ...LOGOS, ...LOGOS, ...LOGOS].map((l, i) => ( style={{
display: 'flex',
width: 'max-content',
animation: 'marquee 35s linear infinite',
}}
>
{/* Only 2 copies — animation goes to -50% which = exactly 1 copy width */}
{[...LOGOS, ...LOGOS].map((l, i) => (
<img <img
key={i} key={i}
src={l.src} src={l.src}