web-humas-fe/components/landing/banner.tsx

23 lines
544 B
TypeScript
Raw Normal View History

2024-01-09 06:24:58 +00:00
'use client'
import Image from 'next/image';
import 'slick-carousel/slick/slick-theme.css';
import 'slick-carousel/slick/slick.css';
export default function Banner() {
const settings = {
dots: true,
infinite: true,
speed: 500,
slidesToShow: 3,
slidesToScroll: 3
};
2024-01-10 22:17:33 +00:00
``
2024-01-09 06:24:58 +00:00
return (
2024-01-10 22:17:33 +00:00
<div className='flex flex-wrap'>
2024-01-10 23:15:10 +00:00
<div className='h-auto w-full relative'>
2024-01-10 22:17:33 +00:00
<img src="/banner2.png" width={'100%'} height={'100%'} />
2024-01-09 06:24:58 +00:00
</div>
</div>
)
}