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';
|
2019-10-19 21:24:16 +04:00
|
|
|
import DefaultLayout from '../../layouts/default';
|
|
|
|
import { FeaturedWrap } from './style';
|
|
|
|
|
2019-09-04 15:27:00 +04:00
|
|
|
|
2019-09-14 11:29:02 +04:00
|
|
|
const Home = (props) => (
|
2019-10-19 21:24:16 +04:00
|
|
|
<DefaultLayout>
|
2019-09-20 19:00:43 +04:00
|
|
|
<PageHeader />
|
2019-09-04 15:27:00 +04:00
|
|
|
<HeroSection />
|
2019-10-19 21:24:16 +04:00
|
|
|
<FeaturedWrap className="border-top border-bottom bg-light">
|
2019-09-07 18:45:27 +04:00
|
|
|
<FeaturedContent />
|
2019-10-19 21:24:16 +04:00
|
|
|
</FeaturedWrap>
|
2019-09-20 19:00:43 +04:00
|
|
|
<PageFooter />
|
2019-10-19 21:24:16 +04:00
|
|
|
</DefaultLayout>
|
2019-09-04 15:27:00 +04:00
|
|
|
);
|
|
|
|
|
|
|
|
export default Home;
|