Logo Marquee

Auto-scrolling marquee of partner or client logos.

Preview

Trusted by teams that ship fast

Acme CorpGlobexInitechHooliPied PiperStark Industries
Acme CorpGlobexInitechHooliPied PiperStark Industries

Installation

terminal
$
Other package managers
bunx --bun shadcn@latest add https://trents.tech/r/logo-marquee.json

Usage

logo-marquee-demo.tsx
import LogoMarquee from "@/components/blocks/logo-marquee"

export default function LogoMarqueeDemo() {
  return (
    <LogoMarquee
      // Update the headline or swap in your customer list.
      title="Trusted by teams that ship fast"
      items={[
        "Acme Corp",
        "Globex",
        "Initech",
        "Hooli",
        "Pied Piper",
        "Stark Industries",
      ]}
    />
  )
}
0