@@ -5,7 +5,7 @@ import Layout from '../../components/Layout';
55import Img from 'gatsby-image' ;
66
77const GetStarted = ( props ) => {
8- const docs = props . data . ServicesQuery . edges . filter ( function ( doc ) {
8+ const docs = props . data . ServicesQuery . edges . filter ( function ( doc ) {
99 return doc . node . frontmatter . path !== null ;
1010 } ) ;
1111 return (
@@ -26,7 +26,10 @@ const GetStarted = (props) => {
2626 < div className = "col-12" >
2727 < h1 > Getting Started</ h1 >
2828 < h2 > Documentation for user and developer</ h2 >
29- < span >
29+ { /* TODO: Build quick link navigation */ }
30+ < div className = "quick-link-menu" >
31+ ✍ Page under construction.
32+ < br />
3033 How To:
3134 < ul >
3235 < li >
@@ -40,13 +43,18 @@ const GetStarted = (props) => {
4043 < li > Hooks</ li >
4144 < li > Contribute</ li >
4245 </ ul >
43- </ span >
46+ </ div >
4447 </ div >
4548 </ div >
4649 < div className = "container pb-2 pb-md-3 doc-selection" >
50+ < h1 > Choose you Guide</ h1 >
4751 < div className = "row docs" >
4852 { docs . map ( ( doc , index ) => (
49- < Link key = { index } to = { doc . node . frontmatter . path } >
53+ < Link
54+ key = { index }
55+ className = "col-12 col-md-2 col-lg-4 mb-2"
56+ to = { doc . node . frontmatter . path }
57+ >
5058 < div className = "feature hoverable" >
5159 < div className = "feature-image" >
5260 < img
@@ -56,9 +64,9 @@ const GetStarted = (props) => {
5664 alt = { doc . node . frontmatter . title }
5765 />
5866 </ div >
59- < h2 className = "feature-title" >
67+ < div className = "feature-title" >
6068 { doc . node . frontmatter . title }
61- </ h2 >
69+ </ div >
6270 </ div >
6371 </ Link >
6472 ) ) }
0 commit comments