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:
16
pages/home.js
Normal file
16
pages/home.js
Normal 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;
|
Reference in New Issue
Block a user