File Location
The component is located atsrc/components/marketing/social-proof.tsx.
How to Customize
Customizing the Social Proof section involves editing the heading text and the list of company logos.1
Editing the Heading Text
The text displayed above the logos can be changed by editing the
<p> tag within the component.src/components/marketing/social-proof.tsx
2
Managing Company Logos
The logos displayed in the marquee are managed by the
companies array at the top of the file.Adding, Removing, or Changing Logos
To change the logos, simply edit the objects in thecompanies array. Each object requires a name (for the alt text) and a logo path.src/components/marketing/social-proof.tsx
3
Customizing the Marquee Animation
You can customize the marquee’s scrolling animation by adjusting two CSS custom properties in the
<Marquee> component’s className.--duration: The time it takes for one full loop of the animation. A lower value is faster.--gap: The amount of space between each logo in the marquee.
src/components/marketing/social-proof.tsx
What do these values mean?
What do these values mean?
Both
[--duration:30s] and [--gap:4rem] are features of Tailwind CSS called “arbitrary values”. They directly set CSS custom properties (--duration and --gap) on the element. The <Marquee> component is designed to read these variables to configure its animation.