1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-28 09:59:02 +02:00

Fix - Page styles not being applied

This commit is contained in:
Kamran Ahmed
2019-10-19 22:49:47 +04:00
parent 9c70c85356
commit 1a2cd75e5d
15 changed files with 109 additions and 118 deletions

16
pages/home.js Normal file
View File

@@ -0,0 +1,16 @@
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;