File size: 4,433 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
import React from 'react';
import './SearchPage.css';
import { Button } from "@material-ui/core";
import SearchResult from "./SearchResult";
function SearchPage() {
return (
<div className='searchPage'>
<div className='searchPage__info'>
<p>62 stays 路 26 august to 30 august 路 2 guest</p>
<h1>Stays nearby</h1>
<Button variant="outlined">Cancellation Flexibility</Button>
<Button variant="outlined">Type of place</Button>
<Button variant="outlined">Price</Button>
<Button variant="outlined">Rooms and beds</Button>
<Button variant="outlined">More filters</Button>
</div>
<SearchResult
img="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcQ_wbPYTxQPMcBh7SPzLFActXnP3uhifeVT_g&usqp=CAU"
location="Private room in center of London"
title="Stay at this spacious Edwardian House"
description="1 guest 路 1 bedroom 路 1 bed 路 1.5 shared bthrooms 路 Wifi 路 Kitchen 路 Free parking 路 Washing Machine"
star={4.73}
price="拢30 / night"
total="拢117 total"
/>
<SearchResult
img="https://www.expatkings.com/wp-content/uploads/2018/10/Airbnb-rental-tips.-Hostmaker-1-620x349.jpg"
location="Private room in center of London"
title="Independant luxury studio apartment"
description="2 guest 路 3 bedroom 路 1 bed 路 1.5 shared bthrooms 路 Wifi 路 Kitchen"
star={4.3}
price="拢40 / night"
total="拢157 total"
/>
<SearchResult
img="https://www.smartertravel.com/uploads/2017/07/Untitled-design-8.jpg"
location="Private room in center of London"
title="London Studio Apartments"
description="4 guest 路 4 bedroom 路 4 bed 路 2 bathrooms 路 Free parking 路 Washing Machine"
star={3.8}
price="拢35 / night"
total="拢207 total"
/>
<SearchResult
img="https://cdn.bisnow.net/fit?height=489&type=jpeg&url=https%3A%2F%2Fs3.amazonaws.com%2Fcdn.bisnow.net%2Fcontent%2Fimages%2F2017%2F05%2F59151d0978bbf_https_press_atairbnb_com_app_uploads_2016_12_midtown_4.jpeg&width=717&sign=FeltIPi9cOWA36nVIeDvZxwgtiCZrpUyMRdvyZviTUI"
location="Private room in center of London"
title="30 mins to Oxford Street, Excel London"
description="1 guest 路 1 bedroom 路 1 bed 路 1.5 shared bthrooms 路 Wifi 路 Kitchen 路 Free parking 路 Washing Machine"
star={4.1}
price="拢55 / night"
total="拢320 total"
/>
<SearchResult
img="https://media.cntraveler.com/photos/5a8f258bd363c34048b35aac/master/w_2250,h_1500,c_limit/airbnb-plus-london.jpg"
location="Private room in center of London"
title="Spacious Peaceful Modern Bedroom"
description="3 guest 路 1 bedroom 路 1 bed 路 1.5 shared bthrooms 路 Wifi 路 Free parking 路 Dry Cleaning"
star={5.0}
price="拢60 / night"
total="拢450 total"
/>
<SearchResult
img="https://static.trip101.com/paragraph_media/pictures/001/676/061/large/969ae4bb-efd1-4fb9-a4e3-5cb3316dd3c9.jpg?1562227937"
location="Private room in center of London"
title="The Blue Room In London"
description="2 guest 路 1 bedroom 路 1 bed 路 1.5 shared bthrooms 路 Wifi 路 Washing Machine"
star={4.23}
price="拢65 / night"
total="拢480 total"
/>
<SearchResult
img="https://image.insider.com/585029a0dd0895bc548b4b8b?width=750&format=jpeg&auto=webp"
location="Private room in center of London"
title="5 Star Luxury Apartment"
description="3 guest 路 1 bedroom 路 1 bed 路 1.5 shared bthrooms 路 Wifi 路 Kitchen 路 Free parking 路 Washing Machine"
star={3.85}
price="拢90 / night"
total="拢650 total"
/>
</div>
)
}
export default SearchPage
|