|
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 |