Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.

Commit 4f31987

Browse files
author
dpatanin
committed
further cleanup and preperation
1 parent ada0395 commit 4f31987

18 files changed

Lines changed: 37 additions & 415 deletions

gatsby-node.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ exports.createPages = ({ graphql, actions }) => {
1717
frontmatter {
1818
path
1919
title
20-
date(formatString: "DD MMMM YYYY")
2120
}
2221
excerpt
2322
}
@@ -33,7 +32,6 @@ exports.createPages = ({ graphql, actions }) => {
3332
frontmatter {
3433
path
3534
title
36-
date(formatString: "DD MMMM YYYY")
3735
}
3836
excerpt
3937
}
@@ -49,7 +47,6 @@ exports.createPages = ({ graphql, actions }) => {
4947
frontmatter {
5048
path
5149
title
52-
date(formatString: "DD MMMM YYYY")
5350
}
5451
excerpt
5552
}

src/pages/docs/index.js

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import { graphql } from 'gatsby';
33
import SEO from '../../components/SEO';
44
import Layout from '../../components/Layout';
55

6-
const docs = (props) => {
7-
const teams = props.data.allMarkdownRemark.edges;
6+
const Docs = (props) => {
7+
const docs = props.data.allMarkdownRemark.edges;
88
return (
99
<Layout bodyClass="page-docs">
10-
<SEO title="Team" />
10+
<SEO title="Documentation" />
1111
<div className="intro">
1212
<div className="container">
1313
<div className="row">
@@ -23,7 +23,7 @@ const docs = (props) => {
2323
</div>
2424

2525
<div className="container pb-6">
26-
<div className="row">
26+
{/* <div className="row">
2727
{teams.map(edge => (
2828
<div key={edge.node.frontmatter.path} className="col-12 col-md-6 mb-1">
2929
<div className="team card-two">
@@ -63,7 +63,7 @@ const docs = (props) => {
6363
</div>
6464
</div>
6565
))}
66-
</div>
66+
</div> */}
6767
</div>
6868
</Layout>
6969
);
@@ -73,23 +73,19 @@ export const query = graphql`
7373
query TeamQuery {
7474
allMarkdownRemark(
7575
filter: { fileAbsolutePath: { regex: "/docs/" } }
76-
sort: { fields: [frontmatter___date], order: DESC }
76+
sort: { fields: [frontmatter___title], order: DESC }
7777
) {
7878
edges {
7979
node {
8080
html
8181
frontmatter {
8282
title
8383
path
84-
image
85-
jobtitle
86-
linkedinurl
87-
email
8884
}
8985
}
9086
}
9187
}
9288
}
9389
`;
9490

95-
export default docs;
91+
export default Docs;

src/pages/docs/peter-van-eijk.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/pages/docs/placeholder.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "placeholder"
3+
path: "/docs/placeholder"
4+
---
5+
6+
This is just a placeholer for preperation purposes.

src/pages/docs/sage-kirk.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/pages/getStarted/accounting.md

Lines changed: 0 additions & 52 deletions
This file was deleted.

src/pages/getStarted/business-advisory.md

Lines changed: 0 additions & 61 deletions
This file was deleted.

src/pages/getStarted/business-sales.md

Lines changed: 0 additions & 51 deletions
This file was deleted.

src/pages/getStarted/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ const GetStarted = (props) => {
1212
<div className="container">
1313
<div className="row">
1414
<div className="col-12">
15-
<h1>Services</h1>
15+
<h1>Tutorials</h1>
1616
</div>
1717
</div>
1818
</div>
1919
</div>
2020

2121
<div className="container pb-6">
22-
<div className="row">
22+
{/* <div className="row">
2323
{getStarted.map(edge => (
2424
<div key={edge.node.frontmatter.path} className="col-12 col-md-4 mb-1">
2525
<div className="card service service-teaser">
@@ -32,7 +32,7 @@ const GetStarted = (props) => {
3232
</div>
3333
</div>
3434
))}
35-
</div>
35+
</div> */}
3636
</div>
3737
</Layout>
3838
);
@@ -42,7 +42,7 @@ export const query = graphql`
4242
query ServicesQuery {
4343
allMarkdownRemark(
4444
filter: { fileAbsolutePath: { regex: "/getStarted/" } }
45-
sort: { fields: [frontmatter___date], order: DESC }
45+
sort: { fields: [frontmatter___title], order: DESC }
4646
) {
4747
edges {
4848
node {

src/pages/getStarted/mergers.md

Lines changed: 0 additions & 54 deletions
This file was deleted.

0 commit comments

Comments
 (0)