|
|
|
@ -8,6 +8,9 @@ import roadmaps from "data/roadmaps"; |
|
|
|
|
import RowBlock from 'components/row-block'; |
|
|
|
|
import IconRowBlock from 'components/icon-row-block'; |
|
|
|
|
import siteConfig from "data/site"; |
|
|
|
|
import { BadgeLink, BadgesList, PrimaryBadge, SecondaryBadge } from '../components/badges'; |
|
|
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; |
|
|
|
|
import { faEnvelope, faCodeBranch } from '@fortawesome/free-solid-svg-icons'; |
|
|
|
|
|
|
|
|
|
const RoadmapsList = () => ( |
|
|
|
|
<DefaultLayout> |
|
|
|
@ -15,8 +18,22 @@ const RoadmapsList = () => ( |
|
|
|
|
<div className="container"> |
|
|
|
|
<PageHeader |
|
|
|
|
title="Developer Roadmaps" |
|
|
|
|
subtitle="Step by step guides and paths to learn different tools or technologies" |
|
|
|
|
/> |
|
|
|
|
subtitle="Step by step guides and paths to learn different tools or technologies"> |
|
|
|
|
<BadgesList className="mt-4"> |
|
|
|
|
<BadgeLink href={`${siteConfig.url.issue}?title=[RequestRoadmap] - Title Here`} target="_blank"> |
|
|
|
|
<SecondaryBadge> |
|
|
|
|
<FontAwesomeIcon icon={faCodeBranch}/> |
|
|
|
|
Request a Roadmap |
|
|
|
|
</SecondaryBadge> |
|
|
|
|
</BadgeLink> |
|
|
|
|
<BadgeLink href="/signup"> |
|
|
|
|
<PrimaryBadge> |
|
|
|
|
<FontAwesomeIcon icon={faEnvelope}/> |
|
|
|
|
Send me Updates |
|
|
|
|
</PrimaryBadge> |
|
|
|
|
</BadgeLink> |
|
|
|
|
</BadgesList> |
|
|
|
|
</PageHeader> |
|
|
|
|
</div> |
|
|
|
|
<div className="pt-5 pb-5 bg-light border-top"> |
|
|
|
|
<div className="container"> |
|
|
|
|