'use client'; import { Avatar, AvatarFallback, AvatarImage, } from '@konobangu/design-system/components/ui/avatar'; import { Carousel, type CarouselApi, CarouselContent, CarouselItem, } from '@konobangu/design-system/components/ui/carousel'; import { User } from 'lucide-react'; import { useEffect, useState } from 'react'; export const Testimonials = () => { 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); } }, 4000); }, [api, current]); return (

Trusted by thousands of businesses worldwide

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

Best decision

Our goal was to streamline SMB trade, making it easier and faster than ever and we did it together.

By CN John Johnsen

))}
); };