Skip to content

Commit 38e3253

Browse files
committed
chore: Minor navbar updates
1 parent 58c001e commit 38e3253

File tree

2 files changed

+44
-8
lines changed

2 files changed

+44
-8
lines changed

.github/workflows/ci-cd-pipeline.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ on:
1010
branches: ["master", "development"]
1111
paths-ignore:
1212
- "*.md" # ignore all markdown files at root
13-
- "*.js" # ignore all js files at root
1413
- "*.ts" # ignore all ts files at root
1514
- "assets/**" # ignore root assets
1615
- "docs/**" # ignore all docs
@@ -24,7 +23,6 @@ on:
2423
branches: ["master", "development"]
2524
paths-ignore:
2625
- "*.md" # ignore all markdown files at root
27-
- "*.js" # ignore all js files at root
2826
- "*.ts" # ignore all ts files at root
2927
- "assets/**" # ignore root assets
3028
- "docs/**" # ignore all docs

docusaurus.config.js

Lines changed: 44 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,19 +99,43 @@ const config = {
9999
position: 'left',
100100
label: 'Documentation',
101101
},
102+
{
103+
label: 'Plugins',
104+
to: (process.env.PUBLIC_SITE_ROOT || '') + '/plugins',
105+
position: 'left',
106+
},
107+
{
108+
label: 'Themes',
109+
to: (process.env.PUBLIC_SITE_ROOT || '') + '/themes',
110+
position: 'left',
111+
},
102112
{
103113
label: 'Playground',
104114
to: '/playground',
105115
position: 'left',
106116
},
107117
{
108-
label: 'Gallery',
109-
to: 'https://gallery.react-chatbotify.com',
118+
type: 'dropdown',
119+
label: 'About Us',
110120
position: 'left',
121+
items: [
122+
{
123+
label: 'Our Team',
124+
to: (process.env.PUBLIC_SITE_ROOT || '') + '/our-team',
125+
},
126+
{
127+
label: 'Terms of Service',
128+
to: (process.env.PUBLIC_SITE_ROOT || '') + '/terms-of-service',
129+
},
130+
{
131+
label: 'Privacy Policy',
132+
to: (process.env.PUBLIC_SITE_ROOT || '') + '/privacy-policy',
133+
},
134+
],
111135
},
112136
{
113-
label: 'Contributing',
114-
to: 'https://github.com/tjtanjin/react-chatbotify#contributing',
137+
label: 'Gallery',
138+
to: 'https://gallery.react-chatbotify.com',
115139
position: 'left',
116140
},
117141
{
@@ -120,9 +144,23 @@ const config = {
120144
position: 'right',
121145
},
122146
{
123-
href: 'https://discord.gg/6R4DK4G5Zh',
124-
label: 'Discord',
147+
type: 'dropdown',
148+
label: 'Community',
125149
position: 'right',
150+
items: [
151+
{
152+
label: 'Discord',
153+
href: 'https://discord.gg/6R4DK4G5Zh',
154+
},
155+
{
156+
label: 'Instagram',
157+
href: 'https://instagram.com/react.chatbotify',
158+
},
159+
{
160+
label: 'Twitter (X)',
161+
href: 'https://x.com/reactchatbotify',
162+
},
163+
],
126164
},
127165
],
128166
},

0 commit comments

Comments
 (0)