An animated logo carousel that cycles brand logos in staggered slots with blur transitions, image preloading, responsive slot counts, and reduced-motion support.
import { LogoCarousel } from "@/components/ui/logo-carousel"; export default function Default() { return ( <div className="flex min-h-[320px] w-full items-center justify-center bg-background px-6 py-16"> <div className="mx-auto flex w-full max-w-3xl flex-col items-center gap-10"> <p className="text-xs font-medium uppercase tracking-[0.2em] text-muted-foreground"> Trusted by fast-growing teams </p> <LogoCarousel /> </div> </div> ); }