Add basic styled components and layout

This commit is contained in:
Kamran Ahmed
2019-10-19 21:24:16 +04:00
parent fb197ae3b3
commit 24a54cf7fd
26 changed files with 515 additions and 252 deletions

View File

@@ -2,17 +2,19 @@ import FeaturedContent from '../../components/featured-content';
import HeroSection from '../../components/hero-section';
import PageFooter from '../../components/page-footer';
import PageHeader from '../../components/page-header';
import './style.scss';
import DefaultLayout from '../../layouts/default';
import { FeaturedWrap } from './style';
const Home = (props) => (
<div className='home-container'>
<DefaultLayout>
<PageHeader />
<HeroSection />
<div className="featured-content border-top border-bottom bg-light">
<FeaturedWrap className="border-top border-bottom bg-light">
<FeaturedContent />
</div>
</FeaturedWrap>
<PageFooter />
</div>
</DefaultLayout>
);
export default Home;