'use client'; import { Carousel, type CarouselApi, CarouselContent, CarouselItem, } from '@konobangu/design-system/components/ui/carousel'; import { useEffect, useState } from 'react'; export const Cases = () => { const [api, setApi] = useState(); const [current, setCurrent] = useState(0); useEffect(() => { if (!api) { return; } setTimeout(() => { if (api.selectedScrollSnap() + 1 === api.scrollSnapList().length) { setCurrent(0); api.scrollTo(0); } else { api.scrollNext(); setCurrent(current + 1); } }, 1000); }, [api, current]); return (

Trusted by thousands of businesses worldwide

{Array.from({ length: 15 }).map((_, index) => (
Logo {index + 1}
))}
); };