File size: 2,566 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
import React from 'react';
import Carousel from 'nuka-carousel';
import { Link } from 'react-router-dom';
const SpotIndexItem = ({ spot }) => {
return (
<div className="spot-index-item">
<Link className="link" to={`/spots/${spot.id}`}>
<li className="spot-li">
<div className="spot-photos">
<Carousel>
<img src={spot.photoUrls[0]} className="spot-photos"/>
<img src={spot.photoUrls[1]} className="spot-photos"/>
<img src={spot.photoUrls[2]} className="spot-photos"/>
<img src={spot.photoUrls[3]} className="spot-photos"/>
<img src={spot.photoUrls[4]} className="spot-photos"/>
<img src={spot.photoUrls[5]} className="spot-photos"/>
<img src={spot.photoUrls[6]} className="spot-photos"/>
{/* <img src={spot.photoUrls[7]} className="spot-photos"/> */}
</Carousel>
</div>
<div className="spot-info">
<div className="spot-short-info">
<span className="plus">PLUS </span>
<span className="spot-type"> VERIFIED · {spot.listing_type}</span>
<span> <i className="far fa-heart heart"></i></span>
<div className="spot-title">{spot.title}</div>
<div className="spot-details">
<span>{spot.num_guests} guests · </span>
<span>Studio · </span>
<span>{spot.num_beds + 1} beds · </span>
<span>{spot.num_baths + 1} baths</span>
</div>
<div className="amenities">
<span>Free parking · </span>
<span>wifi · </span>
<span>tv · </span>
<span>kitchen</span>
</div>
</div>
<div className="spot-footer-info">
<p>★4.9({spot.id - 200 })</p>
<p>${spot.price}/night</p>
</div>
</div>
</li>
</Link>
</div>
)
};
export default SpotIndexItem;
|