Ready to discover the magic of Bhutan? Grab your FREE Bhutan Travel Guide—packed with insider tips, top attractions, hotel recommendations, packing tips, and everything you need to plan the adventure of a lifetime.
Languages available: English, Español, Deutsch, 中文
<ul className="movies-grid" role="list"> {movies.map(movie => ( <li key={movie.id} className="movie-card" role="listitem"> <a href={`${baseUrl}/${encodeURIComponent(movie.id)}`} className="card-link" aria-label={`${movie.title} (${movie.year ?? 'unknown year'})`}> <div className="poster"> <img src={movie.posterBlurDataUrl ?? movie.posterUrl ?? '/placeholder.jpg'} data-src={movie.posterUrl} alt={`${movie.title} poster`} width="200" height="300" loading="lazy" className={movie.posterBlurDataUrl ? 'lqip' : ''} /> </div>
<div className="meta"> <h3 className="title">{movie.title}</h3> {movie.year && <p className="year" aria-hidden="true">{movie.year}</p>} {movie.genres && <p className="genres">{movie.genres.join(', ')}</p>} {typeof movie.rating === 'number' && <p className="rating" aria-label={`Rating ${movie.rating} out of 10`}>{movie.rating}/10</p>} {showSynopsis && movie.synopsis && <p className="synopsis">{movie.synopsis}</p>} </div> </a> </li> ))} </ul> ssrmoviescards new