AI SDK Agents
Full Stack AI Patterns
Complex AI Agents
Workflow Patterns
Tools + Artifacts
pnpm dlx shadcn@latest add https://cult-ui.com/r/logo-carousel.json
export default function LogoCarouselDemo() {
return <LogoCarousel />
}| Prop | Type | Default | Description |
|---|---|---|---|
| columnCount | number | 2 | Number of columns to display logos in |
<LogoCarousel /><LogoCarousel columnCount={3} />To add custom logos to the carousel, modify the allLogos array in the component:
const allLogos: Logo[] = [
{ name: "CustomLogo", id: 1, img: CustomLogoComponent },
// Add more logos...
]Each logo should implement the Logo interface:
interface Logo {
name: string
id: number
img: React.ComponentType<React.SVGProps<SVGSVGElement>>
}