2019-10-28 00:20:59 +04:00
|
|
|
import { FeaturedWrap } from './style';
|
|
|
|
import FeaturedJourneys from './journeys';
|
|
|
|
import FeaturedGuides from './guides';
|
|
|
|
import FeaturedRoadmaps from './roadmaps';
|
2019-09-07 15:26:35 +04:00
|
|
|
|
2019-09-07 18:45:27 +04:00
|
|
|
const FeaturedContent = (props) => (
|
2019-11-02 17:50:57 +04:00
|
|
|
<FeaturedWrap className="border-top bg-light">
|
2019-10-28 00:20:59 +04:00
|
|
|
<FeaturedRoadmaps />
|
|
|
|
<FeaturedGuides />
|
2019-10-19 22:49:47 +04:00
|
|
|
</FeaturedWrap>
|
2019-09-07 15:26:35 +04:00
|
|
|
);
|
|
|
|
|
2019-09-07 18:45:27 +04:00
|
|
|
FeaturedContent.defaultProps = {
|
2019-09-07 15:26:35 +04:00
|
|
|
className: '',
|
|
|
|
};
|
|
|
|
|
2019-09-07 18:45:27 +04:00
|
|
|
export default FeaturedContent;
|