Skip to content

Commit 4294cc9

Browse files
committed
chore(website): add stack overflow and answer overflow to page footer
1 parent 40d7715 commit 4294cc9

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

website/constants.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ export const GITHUB_URL = 'https://github.com/go-task/task';
22
export const TWITTER_URL = 'https://twitter.com/taskfiledev';
33
export const MASTODON_URL = 'https://fosstodon.org/@task';
44
export const DISCORD_URL = 'https://discord.gg/6TY36E39UK';
5+
export const STACK_OVERFLOW = 'https://stackoverflow.com/questions/tagged/taskfile';
6+
export const ANSWER_OVERFLOW = 'https://www.answeroverflow.com/c/974121106208354339';

website/docusaurus.config.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import { DISCORD_URL } from './constants';
99
import { GITHUB_URL } from './constants';
1010
import { MASTODON_URL } from './constants';
1111
import { TWITTER_URL } from './constants';
12+
import { STACK_OVERFLOW } from './constants';
13+
import { ANSWER_OVERFLOW } from './constants';
1214

1315
import lightCodeTheme from './src/themes/prismLight';
1416
import darkCodeTheme from './src/themes/prismDark';
@@ -187,6 +189,14 @@ const config: Config = {
187189
label: 'Discord',
188190
href: DISCORD_URL
189191
},
192+
{
193+
label: 'Stack Overflow',
194+
href: STACK_OVERFLOW
195+
},
196+
{
197+
label: 'Answer Overflow',
198+
href: ANSWER_OVERFLOW
199+
},
190200
{
191201
label: 'OpenCollective',
192202
href: 'https://opencollective.com/task'

0 commit comments

Comments
 (0)