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-4

logo-cloud-4

efferd/logo-cloud-4
FreeBlock

Animated logo carousel with soft edge blurs and gradient accents for a sleek, modern brand showcase.

Install it

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

Source

registry/blocks/logo-cloud/4/logo-cloud.tsxlegacy.efferd.com/r/logo-cloud-4.json
1// https://motion-primitives.com/docs/infinite-slider
2import { InfiniteSlider } from "@/components/ui/infinite-slider";
3// https://motion-primitives.com/docs/progressive-blur
4import { ProgressiveBlur } from "@/components/ui/progressive-blur";
5import { cn } from "@/lib/utils";
6
7type Logo = {
8 src: string;
9 alt: string;
10 width?: number;
11 height?: number;
12};
13
14type LogoCloudProps = React.ComponentProps<"div"> & {
15 logos: Logo[];
16};
17
18export function LogoCloud({ className, logos, ...props }: LogoCloudProps) {
19 return (
20 <div
21 className={cn(
22 "relative mx-auto max-w-3xl border bg-gradient-to-r from-secondary via-transparent to-secondary py-6",
23 className
24 )}
25 {...props}
26 >
27 <InfiniteSlider gap={42} reverse speed={60} speedOnHover={20}>
28 {logos.map((logo) => (
29 <img
30 alt={logo.alt}
31 className="pointer-events-none h-4 select-none md:h-5 dark:brightness-0 dark:invert"
32 height="auto"
33 key={`logo-${logo.alt}`}
34 loading="lazy"
35 src={logo.src}
36 width="auto"
37 />
38 ))}
39 </InfiniteSlider>
40
41 <ProgressiveBlur
42 blurIntensity={1}
43 className="pointer-events-none absolute top-0 left-0 h-full w-[100px] md:w-[160px]"
44 direction="left"
45 />
46 <ProgressiveBlur
47 blurIntensity={1}
48 className="pointer-events-none absolute top-0 right-0 h-full w-[100px] md:w-[160px]"
49 direction="right"
50 />
51 </div>
52 );
53}

What it pulls in

Other registry items

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

Files it writes

  • registry/blocks/logo-cloud/4/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