import React from 'react'; import Link from 'next/link'; import dynamic from 'next/dynamic'; const OwlCarousel = dynamic(import('react-owl-carousel3')); const options = { loop: true, nav: false, dots: false, autoplayHoverPause: true, autoplay: true, margin: 30, responsive: { 0: { items: 2, }, 576: { items: 4, }, 768: { items: 4, }, 992: { items: 6, } } }; const Partner = () => { const [display, setDisplay] = React.useState(false); React.useEffect(() => { setDisplay(true); }, []) return (
) } export default Partner;