2019-09-04 15:27:00 +04:00
|
|
|
import Header from '../../components/header/index';
|
2019-09-07 15:26:35 +04:00
|
|
|
import SwimLane from '../../components/swim-lane';
|
|
|
|
import './style.scss';
|
2019-09-04 15:27:00 +04:00
|
|
|
import HeroSection from '../../components/hero-section';
|
|
|
|
|
|
|
|
export const Home = (props) => (
|
2019-09-07 15:26:35 +04:00
|
|
|
<div className='home-container'>
|
2019-09-04 15:27:00 +04:00
|
|
|
<Header />
|
|
|
|
<HeroSection />
|
2019-09-07 18:16:23 +04:00
|
|
|
<div className="swim-lanes border-top border-bottom">
|
2019-09-07 16:24:48 +04:00
|
|
|
<SwimLane />
|
2019-09-07 15:26:35 +04:00
|
|
|
</div>
|
2019-09-04 15:27:00 +04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default Home;
|