diff --git a/website/constants.ts b/website/constants.ts index 0dfd0e70..d697e5c0 100644 --- a/website/constants.ts +++ b/website/constants.ts @@ -2,3 +2,5 @@ export const GITHUB_URL = 'https://github.com/go-task/task'; export const TWITTER_URL = 'https://twitter.com/taskfiledev'; export const MASTODON_URL = 'https://fosstodon.org/@task'; export const DISCORD_URL = 'https://discord.gg/6TY36E39UK'; +export const STACK_OVERFLOW = 'https://stackoverflow.com/questions/tagged/taskfile'; +export const ANSWER_OVERFLOW = 'https://www.answeroverflow.com/c/974121106208354339'; diff --git a/website/docusaurus.config.ts b/website/docusaurus.config.ts index edae07ae..96e3946c 100644 --- a/website/docusaurus.config.ts +++ b/website/docusaurus.config.ts @@ -9,6 +9,8 @@ import { DISCORD_URL } from './constants'; import { GITHUB_URL } from './constants'; import { MASTODON_URL } from './constants'; import { TWITTER_URL } from './constants'; +import { STACK_OVERFLOW } from './constants'; +import { ANSWER_OVERFLOW } from './constants'; import lightCodeTheme from './src/themes/prismLight'; import darkCodeTheme from './src/themes/prismDark'; @@ -187,6 +189,14 @@ const config: Config = { label: 'Discord', href: DISCORD_URL }, + { + label: 'Stack Overflow', + href: STACK_OVERFLOW + }, + { + label: 'Answer Overflow', + href: ANSWER_OVERFLOW + }, { label: 'OpenCollective', href: 'https://opencollective.com/task'