2019-11-06 20:33:33 +04:00
|
|
|
import FeaturedContent from 'components/featured-content/index';
|
|
|
|
import HeroSection from 'components/hero-section/index';
|
|
|
|
import PageFooter from 'components/page-footer/index';
|
2019-11-08 10:07:33 +04:00
|
|
|
import TopNav from 'components/top-nav';
|
2019-11-06 20:33:33 +04:00
|
|
|
import DefaultLayout from 'layouts/default/index';
|
2019-09-04 16:32:25 +04:00
|
|
|
|
2019-11-06 20:33:33 +04:00
|
|
|
const Home = (props) => (
|
2019-10-19 21:24:16 +04:00
|
|
|
<DefaultLayout>
|
2019-11-08 10:07:33 +04:00
|
|
|
<TopNav />
|
2019-11-06 20:33:33 +04:00
|
|
|
<HeroSection />
|
|
|
|
<FeaturedContent />
|
|
|
|
<PageFooter />
|
2019-10-19 21:24:16 +04:00
|
|
|
</DefaultLayout>
|
2019-08-24 18:29:03 +04:00
|
|
|
);
|
|
|
|
|
2019-11-06 20:33:33 +04:00
|
|
|
export default Home;
|