Components
Loading preview...
An infinite scroller for brands or logos.
npx shadcn@latest add https://21st.dev/r/preetsuthar17/brand-scoller"use client";
import { BrandScroller,BrandScrollerReverse } from "@/components/ui/brand-scoller";
const DemoOne = () => {
return (
<div className="flex flex-col gap-6 items-center justify-center h-screen">
<BrandScroller/>
<BrandScrollerReverse/>
</div>
);
};
export default { DemoOne };