'use client'; import { useIsMobile } from '@workspace/ui/hooks/use-mobile'; import { MotionEffect } from '@/registry/effects/motion-effect'; export const MotionEffectImageGridDemo = () => { const isMobile = useIsMobile(); return (
{Array.from({ length: isMobile ? 2 : 4 }).map((_, index) => ( Slide In Demo ))}
); };