import React from 'react';
import Link from 'next/link';
import dynamic from 'next/dynamic';
const OwlCarousel = dynamic(import('react-owl-carousel3'));
const options = {
items:1,
loop:true,
margin:0,
nav: true,
dots: true,
smartSpeed: 1000,
autoplay:false,
autoplayTimeout:9000,
autoplayHoverPause:true,
navText: [
"",
""
],
};
const HeroSlider = () => {
const [display, setDisplay] = React.useState(false);
React.useEffect(() => {
setDisplay(true);
}, [])
return (
<>
{display ?
Stay Safe &
Be Informed About Covid-19
Stay Safe &
Be Aware About Covid-19
: ''}
>
)
}
export default HeroSlider;