import AspectRatio from '@mui/joy/AspectRatio'; import Box from '@mui/joy/Box'; import Typography from '@mui/joy/Typography'; import Card from '@mui/joy/Card'; const data = [ { src: 'https://images.unsplash.com/photo-1502657877623-f66bf489d236', title: 'Night view', description: '4.21M views', }, { src: 'https://images.unsplash.com/photo-1527549993586-dff825b37782', title: 'Lake view', description: '4.74M views', }, { src: 'https://images.unsplash.com/photo-1532614338840-ab30cf10ed36', title: 'Mountain view', description: '3.98M views', }, ]; export default function CarouselRatio() { return ( *': { scrollSnapAlign: 'center', }, '::-webkit-scrollbar': { display: 'none' }, }} > {data.map((item) => ( {item.title} {item.title} {item.description} ))} ); }