Add hero section and prepare header

This commit is contained in:
Kamran Ahmed
2019-09-04 15:27:00 +04:00
parent b351edfa20
commit 026830d836
14 changed files with 173 additions and 30 deletions

11
pages/home/index.js Normal file
View File

@@ -0,0 +1,11 @@
import Header from '../../components/header/index';
import HeroSection from '../../components/hero-section';
export const Home = (props) => (
<div className='container'>
<Header />
<HeroSection />
</div>
);
export default Home;