Skip to content

Commit 3109daa

Browse files
committed
Added footer links - docusaurus
Signed-off-by: Saif Ul Islam <[email protected]>
1 parent fa9c89d commit 3109daa

File tree

1 file changed

+51
-16
lines changed

1 file changed

+51
-16
lines changed

docs/docusaurus.config.js

Lines changed: 51 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@
99

1010
/** @type {import('@docusaurus/types').DocusaurusConfig} */
1111
module.exports = {
12-
title: 'My Site',
13-
tagline: 'The tagline of my site',
14-
url: 'https://your-docusaurus-test-site.com',
12+
title: 'Mapillary Python SDK',
13+
tagline: 'A Python 3 library built on the Mapillary API v4 to facilitate retrieving and working with Mapillary data',
14+
url: 'https://mapillary.github.io',
1515
baseUrl: '/',
1616
onBrokenLinks: 'throw',
1717
onBrokenMarkdownLinks: 'warn',
1818
favicon: 'img/favicon.ico',
19-
organizationName: 'facebook', // Usually your GitHub org/user name.
20-
projectName: 'docusaurus', // Usually your repo name.
19+
organizationName: 'mapillary', // Usually your GitHub org/user name.
20+
projectName: 'mapillary-python-sdk', // Usually your repo name.
2121
themeConfig: {
2222
navbar: {
23-
title: 'My Facebook Project',
23+
title: 'Mapillary Python SDK',
2424
logo: {
25-
alt: 'My Facebook Project Logo',
25+
alt: 'Mapillary',
2626
src: 'img/logo.svg',
2727
},
2828
items: [
@@ -35,7 +35,7 @@ module.exports = {
3535
{to: 'blog', label: 'Blog', position: 'left'},
3636
// Please keep GitHub link to the right for consistency.
3737
{
38-
href: 'https://github.com/facebook/docusaurus',
38+
href: 'https://github.com/mapillary/mapillary-python-sdk',
3939
label: 'GitHub',
4040
position: 'right',
4141
},
@@ -61,31 +61,66 @@ module.exports = {
6161
title: 'Community',
6262
items: [
6363
{
64-
label: 'Stack Overflow',
65-
href: 'https://stackoverflow.com/questions/tagged/docusaurus',
64+
label: 'Forum',
65+
href: 'https://forum.mapillary.com/',
6666
},
6767
{
6868
label: 'Twitter',
69-
href: 'https://twitter.com/docusaurus',
69+
href: 'https://twitter.com/mapillary',
7070
},
7171
{
72-
label: 'Discord',
73-
href: 'https://discordapp.com/invite/docusaurus',
72+
label: 'Facebook',
73+
href: 'https://www.facebook.com/mapillary/',
7474
},
7575
],
7676
},
7777
{
7878
title: 'More',
7979
items: [
80+
// Do we want to keep the SDK blog?
81+
// For now, commented out
82+
// {
83+
// label: 'SDK Blog',
84+
// to: 'blog',
85+
// },
8086
{
8187
label: 'Blog',
82-
to: 'blog',
88+
href: 'https://blog.mapillary.com/',
89+
},
90+
{
91+
label: 'Website',
92+
href: 'https://www.mapillary.com/',
93+
}
94+
],
95+
},
96+
{
97+
title: 'SDK',
98+
items: [
99+
{
100+
label: 'PyPi Homepage',
101+
href: 'https://pypi.org/project/mapillary/'
102+
},
103+
{
104+
label: 'Developer Resources',
105+
href: 'https://www.mapillary.com/developer'
83106
},
84107
{
85108
label: 'GitHub',
86-
href: 'https://github.com/facebook/docusaurus',
109+
href: 'https://github.com/mapillary/mapillary-python-sdk',
87110
},
88-
],
111+
{
112+
label: 'Bug Tracker',
113+
href: 'https://github.com/mapillary/mapillary-python-sdk/issues',
114+
},
115+
{
116+
label: 'Release Notes',
117+
href: 'https://github.com/mapillary/mapillary-python-sdk/releases'
118+
},
119+
{
120+
label: 'Download',
121+
href: 'https://pypi.org/project/mapillary/#files'
122+
}
123+
]
89124
},
90125
{
91126
title: 'Legal',

0 commit comments

Comments
 (0)