import Autoplay from 'embla-carousel-autoplay' import useEmblaCarousel from 'embla-carousel-react' import { Link } from 'react-router' import { BANNER } from '~/data/contents' export const Banner = () => { const [emblaReference] = useEmblaCarousel({ loop: true }, [Autoplay()]) return (
{BANNER.map(({ urlImage, alt, link }, index) => (
{alt}
))}
) }