logo.outerHTML) // Duplicate logos and add a random id to each this.logos = [...logos, ...logos] setTimeout(() => { setInterval(() => { this.activeIndex = this.activeIndex >= this.logos.length - 1 ? 0 : this.activeIndex + 1 }, 4000) }, this.delay) }, isPrevious(index) { return this.activeIndex === 0 ? index === this.logos.length - 1 : index === this.activeIndex - 1 }, isActive(index) { return inde

