-
Notifications
You must be signed in to change notification settings - Fork 661
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
slackapi[bot]
committed
Nov 1, 2024
1 parent
2bebf5b
commit 9cb4610
Showing
3 changed files
with
178 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,4 @@ const footer = { | |
], | ||
}; | ||
|
||
module.exports = footer; | ||
module.exports = footer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,89 @@ | ||
const navbar = { | ||
title: 'Slack Developer Tools', | ||
logo: { | ||
src: 'img/slack-logo.svg', | ||
}, | ||
items: [ | ||
{ | ||
type: 'dropdown', | ||
label: 'Bolt', | ||
position: 'left', | ||
items: [ | ||
{ | ||
label: 'Java', | ||
to: 'https://tools.slack.dev/java-slack-sdk/guides/bolt-basics', | ||
target: '_self', | ||
}, | ||
{ | ||
label: 'JavaScript', | ||
to: 'https://tools.slack.dev/bolt-js', | ||
target: '_self', | ||
}, | ||
{ | ||
label: 'Python', | ||
to: 'https://tools.slack.dev/bolt-python', | ||
target: '_self', | ||
}, | ||
], | ||
}, | ||
{ | ||
type: 'dropdown', | ||
label: 'SDKs', | ||
position: 'left', | ||
items: [ | ||
{ | ||
label: 'Java Slack SDK', | ||
to: 'https://tools.slack.dev/java-slack-sdk/', | ||
target: '_self', | ||
}, | ||
{ | ||
label: 'Node Slack SDK', | ||
to: 'https://tools.slack.dev/node-slack-sdk/', | ||
target: '_self', | ||
}, | ||
{ | ||
label: 'Python Slack SDK', | ||
to: 'https://tools.slack.dev/python-slack-sdk/', | ||
target: '_self', | ||
}, | ||
{ | ||
label: 'Deno Slack SDK', | ||
to: 'https://api.slack.com/automation/quickstart', | ||
target: '_self', | ||
}, | ||
], | ||
}, | ||
{ | ||
type: 'dropdown', | ||
label: 'Community', | ||
position: 'left', | ||
items: [ | ||
{ | ||
label: 'Community tools', | ||
to: 'https://tools.slack.dev/community-tools', | ||
target: '_self', | ||
}, | ||
{ | ||
label: 'Slack Community', | ||
to: 'https://slackcommunity.com/', | ||
target: '_self', | ||
}, | ||
], | ||
}, | ||
{ | ||
to: 'https://api.slack.com/docs', | ||
label: 'API Docs', | ||
target: '_self', | ||
}, | ||
{ | ||
'aria-label': 'GitHub Repository', | ||
className: 'navbar-github-link', | ||
href: 'https://github.com/slackapi', | ||
position: 'right', | ||
target: '_self', | ||
}, | ||
], | ||
title: "Slack Developer Tools", | ||
logo: { | ||
src: "img/slack-logo.svg", | ||
href: 'https://tools.slack.dev', | ||
}, | ||
items: [ | ||
{ | ||
type: "dropdown", | ||
label: "Bolt", | ||
position: "left", | ||
items: [ | ||
{ | ||
label: "Java", | ||
to: "https://tools.slack.dev/java-slack-sdk/guides/bolt-basics", | ||
target: "_self", | ||
}, | ||
{ | ||
label: "JavaScript", | ||
to: "https://tools.slack.dev/bolt-js", | ||
target: "_self", | ||
}, | ||
{ | ||
label: "Python", | ||
to: "https://tools.slack.dev/bolt-python", | ||
target: "_self", | ||
}, | ||
], | ||
}, | ||
{ | ||
type: "dropdown", | ||
label: "SDKs", | ||
position: "left", | ||
items: [ | ||
{ | ||
label: "Java Slack SDK", | ||
to: "https://tools.slack.dev/java-slack-sdk/", | ||
target: "_self", | ||
}, | ||
{ | ||
label: "Node Slack SDK", | ||
to: "https://tools.slack.dev/node-slack-sdk/", | ||
target: "_self", | ||
}, | ||
{ | ||
label: "Python Slack SDK", | ||
to: "https://tools.slack.dev/python-slack-sdk/", | ||
target: "_self", | ||
}, | ||
{ | ||
label: "Deno Slack SDK", | ||
to: "https://api.slack.com/automation/quickstart", | ||
target: "_self", | ||
}, | ||
], | ||
}, | ||
{ | ||
type: "dropdown", | ||
label: "Community", | ||
position: "left", | ||
items: [ | ||
{ | ||
label: "Community tools", | ||
to: "https://tools.slack.dev/community-tools", | ||
target: "_self", | ||
}, | ||
{ | ||
label: "Slack Community", | ||
to: "https://slackcommunity.com/", | ||
target: "_self", | ||
}, | ||
], | ||
}, | ||
{ | ||
to: "https://api.slack.com/docs", | ||
label: "API Docs", | ||
target: "_self", | ||
}, | ||
{ | ||
"aria-label": "GitHub Repository", | ||
className: "navbar-github-link", | ||
href: "https://github.com/slackapi", | ||
position: "right", | ||
target: "_self", | ||
}, | ||
], | ||
}; | ||
|
||
module.exports = navbar; | ||
module.exports = navbar; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters