2019-11-06 18:20:09 +04:00
|
|
|
import DefaultLayout from 'layouts/default/index';
|
|
|
|
import PageHeader from 'components/page-header/index';
|
2019-11-01 09:28:05 +04:00
|
|
|
|
|
|
|
const Roadmap = () => (
|
|
|
|
<DefaultLayout>
|
|
|
|
<PageHeader />
|
|
|
|
<div className="container">
|
|
|
|
<p>Show all guides here</p>
|
|
|
|
</div>
|
|
|
|
</DefaultLayout>
|
|
|
|
);
|
|
|
|
|
2019-11-06 18:20:09 +04:00
|
|
|
export default Roadmap;
|