This component no longer exists. It was in ncdai’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-14 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
scroll-fade-effect-block-02
ncdai/scroll-fade-effect-block-02RemovedBlock
ncdai publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/Prashant-thakur77/myportfolio/main/public/r/scroll-fade-effect-block-02.jsonSource
1import Image from "next/image";23import { ScrollFadeEffect } from "@/registry/scroll-fade-effect";45interface Artwork {6 artist: string;7 art: string;8}910const works: Artwork[] = [11 {12 artist: "Ornella Binni",13 art: "https://images.unsplash.com/photo-1465869185982-5a1a7522cbcb?auto=format&fit=crop&w=300&q=80",14 },15 {16 artist: "Tom Byrom",17 art: "https://images.unsplash.com/photo-1548516173-3cabfa4607e9?auto=format&fit=crop&w=300&q=80",18 },19 {20 artist: "Vladimir Malyavko",21 art: "https://images.unsplash.com/photo-1494337480532-3725c85fd2ab?auto=format&fit=crop&w=300&q=80",22 },23];2425export default function ScrollFadeEffectHorizontalDemo() {26 return (27 <div className="rounded-lg border">28 <ScrollFadeEffect className="w-72 sm:w-96" orientation="horizontal">29 <div className="flex w-max gap-4 p-4">30 {works.map((artwork) => (31 <figure key={artwork.artist} className="shrink-0">32 <Image33 src={artwork.art}34 alt={`Photo by ${artwork.artist}`}35 className="aspect-3/4 h-fit w-fit rounded-sm object-cover"36 width={300}37 height={400}38 />3940 <figcaption className="pt-2 text-xs text-muted-foreground">41 Photo by{" "}42 <span className="font-semibold text-foreground">43 {artwork.artist}44 </span>45 </figcaption>46 </figure>47 ))}48 </div>49 </ScrollFadeEffect>50 </div>51 );52}
What it pulls in
Other registry items
Files it writes
More from ncdai
All 17 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Blog 01blog-01 | ncdai | Blocks | Unverified | 1 dep · 2 files | |
| Blog 02blog-02 | ncdai | Blocks | Unverified | 1 dep · 2 files | |
| Experience 01experience-01 | ncdai | Blocks | Unverified | no deps | |
| Hero 01hero-01 | ncdai | Blocks | Unverified | no deps · 2 files | |
| Login 01login-01 | ncdai | Blocks | Unverified | no deps · 2 files | |
| Metrics 01metrics-01 | ncdai | Blocks | Unverified | 1 dep · 2 files | |
| Not Found 01not-found-01 | ncdai | Blocks | Free | 3 deps · 11 files | |
| Social Links 01social-links-01 | ncdai | Blocks | Unverified | no deps |
