Logo Cloud
A strip of logos that shows who uses your product, what it integrates with, or where it's been featured.
Why it matters
A logo strip is one of the cheapest trust signals you can add to a landing page. If you have real customers with recognizable brands, show their logos. If you are early, show the tech stack your product is built on — it signals quality and credibility to technical buyers without needing social proof you haven't earned yet.
The section hides itself automatically when show is false or the items array is empty — no conditional rendering needed on your end.
Usage
import LogoCloud from "@/components/LogoCloud";
<LogoCloud />Configuration
logoCloud: {
show: true,
useMonochrome: true,
shouldRoll: true,
items: [
{ src: "https://cdn.jsdelivr.net/gh/gilbarbara/logos/logos/stripe.svg" },
{ src: "https://cdn.jsdelivr.net/gh/gilbarbara/logos/logos/supabase.svg", scale: 1.1 },
{ src: "/logos/yourlogo.svg", scale: 0.9 },
],
},Section fields
show— set tofalseto hide the entire section globally without removing it from your page.useMonochrome— whentrue, all logos are converted to grayscale and rendered at reduced opacity. This keeps the section visually quiet and prevents a wall of competing brand colors from clashing with your design. Whenfalse, logos render in their original colors.shouldRoll— whentrue, logos animate in a continuous horizontal marquee (the list is duplicated internally to create a seamless loop). Whenfalse, the logos are laid out as a static centered row — and the component hard-caps the display at the first 5 items regardless of how many you add. If you have more than 5 logos, setshouldRoll: true.items— an array of logo objects. Each item has asrcand an optionalscale.
Item fields
src— the image path. Accepts two formats: a local path relative to/public(e.g."/logos/stripe.svg"maps topublic/logos/stripe.svg), or a full external URL (e.g. a jsDelivr CDN link). SVGs scale cleanly at any size — prefer them over PNGs. If the image fails to load, the slot disappears silently rather than showing a broken image.scale— optional number used as a CSStransform: scale()multiplier. Use it to normalize logos that are noticeably larger or smaller than the others. A value of1.2makes the logo 20% larger;0.85makes it 15% smaller. Most logos won't need this — only reach for it when something looks obviously out of proportion.
TipThe gilbarbara/logos repository on jsDelivr has clean SVGs for hundreds of popular tools and brands. Use the CDN URL pattern
https://cdn.jsdelivr.net/gh/gilbarbara/logos/logos/[name].svg to drop in logos without downloading anything.TipTurn
useMonochrome off temporarily when adding new logos — it is much easier to confirm you have the right logo when you can see the real colors. Switch it back on once everything looks correct.TipStatic mode (
shouldRoll: false) only ever shows 5 logos — the rest are silently ignored. If you have more than 5, switch to rolling mode. For a rolling belt, five to eight distinct logos is the sweet spot: fewer and the loop feels short, more than ten and it becomes noise.