2019-09-04 15:27:00 +04:00
|
|
|
import Header from '../../components/header/index';
|
2019-09-07 18:45:27 +04:00
|
|
|
import FeaturedContent from '../../components/featured-content';
|
2019-09-07 15:26:35 +04:00
|
|
|
import './style.scss';
|
2019-09-04 15:27:00 +04:00
|
|
|
import HeroSection from '../../components/hero-section';
|
2019-09-08 00:03:40 +04:00
|
|
|
import Footer from '../../components/footer';
|
2019-09-04 15:27:00 +04:00
|
|
|
|
|
|
|
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 23:18:57 +04:00
|
|
|
<div className="featured-content border-top border-bottom bg-light">
|
2019-09-07 18:45:27 +04:00
|
|
|
<FeaturedContent />
|
2019-09-07 15:26:35 +04:00
|
|
|
</div>
|
2019-09-08 00:03:40 +04:00
|
|
|
<Footer />
|
2019-09-04 15:27:00 +04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default Home;
|