Add pathmap generation

This commit is contained in:
Kamran Ahmed
2019-11-06 20:33:33 +04:00
parent 2cf22c1777
commit 159741f0af
8 changed files with 66 additions and 36 deletions

View File

@@ -1,10 +1,16 @@
import Home from './home';
import DefaultLayout from 'layouts/default';
import FeaturedContent from 'components/featured-content/index';
import HeroSection from 'components/hero-section/index';
import PageFooter from 'components/page-footer/index';
import PageHeader from 'components/page-header/index';
import DefaultLayout from 'layouts/default/index';
const Index = () => (
const Home = (props) => (
<DefaultLayout>
<Home />
<PageHeader />
<HeroSection />
<FeaturedContent />
<PageFooter />
</DefaultLayout>
);
export default Index;
export default Home;