Skip to content

Commit e882769

Browse files
docs: added links to discord to readme and docs
* feat(docs): added redirect to discord from main domain * docs: updated readme with discord link * docs: added link to discord to main navigation * docs: updated links in footer * docs: added discord icon * docs: added discord icons * docs: updated icon * docs: updated icon
1 parent 4382cf2 commit e882769

File tree

6 files changed

+32
-1
lines changed

6 files changed

+32
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ If you’d like to contribute, please check the **[Contribution Guide](CONTRIBUT
9595
- Website: [openselfservice.com](https://www.openselfservice.com)
9696
- LinkedIn: [/company/open-self-service/](https://www.linkedin.com/company/open-self-service/)
9797
- Twitter/X: [@openselfservice](https://twitter.com/openselfservice)
98+
- Discord: [Join our community](https://discord.com/channels/1346418719689146368/1359073601189314630)
9899
- GitHub Discussions: [Join the conversation](https://github.com/o2sdev/openselfservice/discussions)
99100

100101
## 📜 License

apps/docs/docusaurus.config.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,12 @@ const config: Config = {
335335
className: 'navbar__item--docs',
336336
},
337337
{ to: '/blog', label: 'Blog', position: 'right', className: 'navbar__item--guides' },
338+
{
339+
to: 'https://discord.com/channels/1346418719689146368/1359073601189314630',
340+
label: 'Discord',
341+
position: 'right',
342+
className: 'navbar__item--discord',
343+
},
338344
{
339345
to: 'https://github.com/o2sdev/openselfservice',
340346
label: 'GitHub',
@@ -377,9 +383,13 @@ const config: Config = {
377383
href: 'https://www.linkedin.com/company/open-self-service/',
378384
},
379385
{
380-
label: 'O2S on X',
386+
label: 'Twitter / X',
381387
href: 'https://x.com/openselfservice',
382388
},
389+
{
390+
label: 'Discord',
391+
href: 'https://discord.com/channels/1346418719689146368/1359073601189314630',
392+
},
383393
],
384394
},
385395
{
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

apps/docs/src/css/custom.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,15 @@ aside:not(.theme-doc-sidebar-container) {
440440
.navbar__item.navbar__link.navbar__item--github:hover:before {
441441
background: url('../../src/assets/icons/github-active.svg') no-repeat;
442442
}
443+
444+
.navbar__item--discord:before {
445+
background: url('../../src/assets/icons/discord.svg') no-repeat;
446+
}
447+
.navbar__item.navbar__link.navbar__item--discord.navbar__link--active::before,
448+
.navbar__item.navbar__link.navbar__item--discord:hover:before {
449+
background: url('../../src/assets/icons/discord-active.svg') no-repeat;
450+
}
451+
443452
.markdown hr {
444453
background-color: transparent;
445454
border-bottom: 1px solid !important;

apps/docs/vercel.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
"source": "/index.html",
1212
"destination": "/",
1313
"permanent": true
14+
},
15+
{
16+
"source": "/discord",
17+
"destination": "https://discord.com/channels/1346418719689146368/1359073601189314630",
18+
"permanent": true
1419
}
1520
]
1621
}

0 commit comments

Comments
 (0)