computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
468 B
16 lines
468 B
5 years ago
|
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 Home = (props) => (
|
||
|
<DefaultLayout>
|
||
|
<PageHeader />
|
||
|
<HeroSection />
|
||
|
<FeaturedContent />
|
||
|
<PageFooter />
|
||
|
</DefaultLayout>
|
||
|
);
|
||
|
|
||
|
export default Home;
|