BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/efferd/logo-cloud-3

logo-cloud-3

efferd/logo-cloud-3
FreeBlock

Smooth infinite-scrolling logo showcase highlighting trusted brands with gradient masking and elegant motion effects.

Install it

npx shadcn@latest add https://legacy.efferd.com/r/logo-cloud-3.json

Source

registry/blocks/logo-cloud/3/logo-cloud.tsxlegacy.efferd.com/r/logo-cloud-3.json
1// https://motion-primitives.com/docs/infinite-slider
2import { InfiniteSlider } from "@/components/ui/infinite-slider";
3
4import { cn } from "@/lib/utils";
5
6type Logo = {
7 src: string;
8 alt: string;
9 width?: number;
10 height?: number;
11};
12
13type LogoCloudProps = React.ComponentProps<"div"> & {
14 logos: Logo[];
15};
16
17export function LogoCloud({ className, logos, ...props }: LogoCloudProps) {
18 return (
19 <div
20 {...props}
21 className={cn(
22 "overflow-hidden py-4 [mask-image:linear-gradient(to_right,transparent,black,transparent)]",
23 className
24 )}
25 >
26 <InfiniteSlider gap={42} reverse speed={80} speedOnHover={25}>
27 {logos.map((logo) => (
28 <img
29 alt={logo.alt}
30 className="pointer-events-none h-4 select-none md:h-5 dark:brightness-0 dark:invert"
31 height={logo.height || "auto"}
32 key={`logo-${logo.alt}`}
33 loading="lazy"
34 src={logo.src}
35 width={logo.width || "auto"}
36 />
37 ))}
38 </InfiniteSlider>
39 </div>
40 );
41}

What it pulls in

Other registry items

  • https://motion-primitives.com/c/infinite-slider.json

Files it writes

  • registry/blocks/logo-cloud/3/logo-cloud.tsx

Facts

Registry
efferd
Type
registry:block
Access
Free
Files written
1
Licence
NOASSERTION
First indexed
2026-08-01
Last confirmed
today

Go to the source

legacy.efferd.com shabanhr/efferd-ui on GitHub Raw registry item This item as JSON

More from efferd

All 40 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
auth-1auth-1efferdBlocksFreeno deps · 2 files
auth-2auth-2efferdBlocksFree1 dep · 3 files
contact-1contact-1efferdBlocksFreeno deps
contact-2contact-2efferdBlocksFreeno deps
cta-1cta-1efferdBlocksFreeno deps
cta-2cta-2efferdBlocksFreeno deps
cta-3cta-3efferdBlocksFreeno deps
cta-4cta-4efferdBlocksFreeno deps
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex