GodUIGodUI
109Follow on X

Trusted by fast-moving teams

Northwind
Globex
Acme
Initech
Hooli
Stark
Umbra
Vertex

Marquee

tsx
import { Marquee } from "@/components/godui/marquee";const logos = ["Northwind", "Globex", "Acme", "Initech", "Hooli", "Stark", "Umbra", "Vertex"];export function MarqueeDemo() {return (  <div className="py-4">    <p className="mb-6 text-center text-sm font-medium uppercase tracking-wide text-muted-foreground">Trusted by fast-moving teams</p>    <Marquee speed={28}>      {logos.map((name) => (        <span key={name} className="px-2 text-lg font-semibold tracking-tight text-muted-foreground transition-colors hover:text-foreground">{name}</span>      ))}    </Marquee>  </div>);}