File size: 2,066 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 |
import React from 'react';
import './Home.css';
import Banner from './Banner'
import Card from './Card'
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 Gomti Nagar"
description="Superhost with a stunning view of Nala right infront of your eyes"
price="₹1500/night"
/>
<Card
src="https://thespaces.com/wp-content/uploads/2017/08/Courtesy-of-Airbnb.jpg"
title="Penthouse in Indira Nagar"
description="Enjoy the amazing sights of Lucknow with this house in middle of nowhere"
price="₹3500/night"
/>
<Card
src="https://media.nomadicmatt.com/2018/apartment.jpg"
title="1 Bedroom apartment"
description="Host with great amenities like Ghosts, Gobar gas se chalne wala Chulah"
price="₹2000/night"
/>
</div>
</div>
)
}
export default Home |