// Assuming your component is located in "@/components/ui/rolling-gallery"
import { RollingGallery } from "@/components/ui/rolling-gallery";
const DemoRollingGallery = () => {
return (
<div className="flex w-full h-screen justify-center items-center bg-zinc-900 p-4">
<RollingGallery autoplay={true} pauseOnHover={true} />
</div>
);
};
export { DemoRollingGallery };