Skip to content

Commit

Permalink
Add 'What's Next' page.
Browse files Browse the repository at this point in the history
  • Loading branch information
arunoda committed Aug 9, 2017
1 parent 54fbbe4 commit 8787dcf
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
6 changes: 5 additions & 1 deletion lib/data/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ export default [
{
name: 'Scaling',
href: '/docs/getting-started/scaling'
},
{
name: "What's Next",
href: '/docs/getting-started/whats-next'
}
]
},
Expand Down Expand Up @@ -139,7 +143,7 @@ export default [
name: 'Support',
posts: [
{
name: 'Support channels',
name: 'Support Channels',
href: '/docs/support/channels'
}
]
Expand Down
20 changes: 20 additions & 0 deletions pages/docs/getting-started/whats-next.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import markdown from 'markdown-in-js'
import withDoc, { components } from '../../../lib/with-doc'
import { arunoda } from '../../../lib/data/team'
import { InternalLink } from '../../../components/text/link'

// prettier-ignore
export default withDoc({
title: 'What\'s Next',
date: '10 August 2017',
authors: [arunoda],
})(markdown(components)`
As you've gone through the getting started guide, you are ready to do production deployments with ▲now.
For additional information, follow these links:
* ${<InternalLink href="/docs/deployment-types/lifecycle">Discover more with guides</InternalLink>}
* ${<InternalLink href="/docs/examples/json-api">Try example apps</InternalLink>}
* ${<InternalLink href="/docs/support/channels">Connect with our support channels</InternalLink>}
`)
2 changes: 1 addition & 1 deletion pages/docs/support/channels.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { sergio } from '../../../lib/data/team'

// prettier-ignore
export default withDoc({
title: 'Support channels',
title: 'Support Channels',
date: '21 Jul 2017',
authors: [sergio],
})(markdown(components)`
Expand Down

0 comments on commit 8787dcf

Please sign in to comment.