File size: 1,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 |
import React, { useState } from 'react'
import './Banner.css'
import { Button } from "@material-ui/core";
import Search from './Search';
import { useHistory } from "react-router-dom";
function Banner() {
const history = useHistory();
const [showSearch, setShowSearch] = useState(false);
return (
<div className='banner'>
<div className='banner__search'>
{showSearch && <Search />}
<Button onClick={() => setShowSearch(!showSearch)} className='banner__searchButton' variant='outlined'>
{showSearch ? "Hide" : "Search Dates"}
</Button>
</div>
<div className='banner__info'>
<h1>Get out and stretch your imagination</h1>
<h5>
Plan a different kind of getaway to uncover the hidden gems near you.
</h5>
<Button onClick={() => history.push('/search')} variant='outlined'>Explore Nearby</Button>
</div>
</div>
)
}
export default Banner
|