2019-11-06 18:20:09 +04:00
|
|
|
import DefaultLayout from 'layouts/default/index';
|
2019-11-08 10:22:30 +04:00
|
|
|
import SiteNav from 'components/site-nav';
|
2019-11-08 17:59:16 +04:00
|
|
|
import PageHeader from 'components/page-header';
|
|
|
|
import PageFooter from 'components/page-footer';
|
2019-11-08 18:57:57 +04:00
|
|
|
import { getAllGuides } from 'lib/guide';
|
|
|
|
import FeaturedGuide from '../../components/featured-guide';
|
2019-11-01 09:28:05 +04:00
|
|
|
|
|
|
|
const Roadmap = () => (
|
|
|
|
<DefaultLayout>
|
2019-11-08 10:22:30 +04:00
|
|
|
<SiteNav />
|
2019-11-08 17:59:16 +04:00
|
|
|
<PageHeader
|
2019-11-08 18:57:57 +04:00
|
|
|
title="Programming Guides"
|
|
|
|
subtitle="Easy to follow guides on complex topics written and maintained by the community"
|
2019-11-08 17:59:16 +04:00
|
|
|
/>
|
2019-11-08 18:57:57 +04:00
|
|
|
<div className="pt-5 pb-5 bg-light border-top">
|
2019-11-08 17:59:16 +04:00
|
|
|
<div className="container">
|
2019-11-08 18:57:57 +04:00
|
|
|
<div className="row">
|
|
|
|
{ getAllGuides().map(guide => (
|
|
|
|
<FeaturedGuide guide={guide} key={ guide.url } />
|
|
|
|
)) }
|
|
|
|
</div>
|
2019-11-08 17:59:16 +04:00
|
|
|
</div>
|
2019-11-01 09:28:05 +04:00
|
|
|
</div>
|
2019-11-08 17:59:16 +04:00
|
|
|
<PageFooter />
|
2019-11-01 09:28:05 +04:00
|
|
|
</DefaultLayout>
|
|
|
|
);
|
|
|
|
|
2019-11-06 18:20:09 +04:00
|
|
|
export default Roadmap;
|