2019-09-07 18:45:27 +04:00
|
|
|
import FeaturedContent from '../../components/featured-content';
|
2019-09-04 15:27:00 +04:00
|
|
|
import HeroSection from '../../components/hero-section';
|
2019-09-20 19:00:43 +04:00
|
|
|
import PageFooter from '../../components/page-footer';
|
|
|
|
import PageHeader from '../../components/page-header';
|
|
|
|
import './style.scss';
|
2019-09-04 15:27:00 +04:00
|
|
|
|
2019-09-14 11:29:02 +04:00
|
|
|
const Home = (props) => (
|
2019-09-07 15:26:35 +04:00
|
|
|
<div className='home-container'>
|
2019-09-20 19:00:43 +04:00
|
|
|
<PageHeader />
|
2019-09-04 15:27:00 +04:00
|
|
|
<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-20 19:00:43 +04:00
|
|
|
<PageFooter />
|
2019-09-04 15:27:00 +04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default Home;
|