File size: 2,077 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 |
import React from 'react';
import './Home.css';
import Banner from './Banner'
import Card from './Card'
// ES7 snippets to do 'rfce'
function Home() {
return (
<div className='home'>
<Banner />
<div className='home__section'>
<Card
src="https://a0.muscache.com/im/pictures/eb9c7c6a-ee33-414a-b1ba-14e8860d59b3.jpg?im_w=720"
title="Online Experiences"
description="Unique activities we can do together, led by a world of hosts."
/>
<Card
src="https://a0.muscache.com/im/pictures/15159c9c-9cf1-400e-b809-4e13f286fa38.jpg?im_w=720"
title="Unique stays"
description="Spaces that are more than just a place to sleep."
/>
<Card
src="https://a0.muscache.com/im/pictures/fdb46962-10c1-45fc-a228-d0b055411448.jpg?im_w=720"
title="Entire homes"
description="Comfortable private places, with room for friends or family."
/>
</div>
<div className='home__section'>
<Card
src="https://media.nomadicmatt.com/2019/airbnb_breakup3.jpg"
title="3 Bedroom Flat in Bournemouth"
description="Superhost with a stunning view of the beachside in Sunny Bournemouth"
price="£130/night"
/>
<Card
src="https://thespaces.com/wp-content/uploads/2017/08/Courtesy-of-Airbnb.jpg"
title="Penthouse in London"
description="Enjoy the amazing sights of London with this stunning penthouse"
price="£350/night"
/>
<Card
src="https://media.nomadicmatt.com/2018/apartment.jpg"
title="1 Bedroom apartment"
description="Superhost with great amenities and a fabolous shopping complex nearby"
price="£70/night"
/>
</div>
</div>
)
}
export default Home
|