Is there normal slideshow container than the repeater?

You could use a flexbox, set it to slides and then add some code to automatically change the slides. You can then edit each slide to look how you want. Not a perfect solution, but may work for what you need.

$w.onReady(function () {
    let boxes = [$w("#box1"), $w("#box2"), $w("#box3")]; // replace with your box IDs
    let currentIndex = 0;

    setInterval(() => {
        // Hide the current box
        boxes[currentIndex].collapse();

        // Move to the next box
        currentIndex = (currentIndex + 1) % boxes.length;

        // Show the next box
        boxes[currentIndex].expand();
    }, 3000); // change boxes every 3 seconds
});