Skip to content

Commit bfbce3e

Browse files
committed
feat: add contact nav item action in doc
1 parent 3cc2b64 commit bfbce3e

1 file changed

Lines changed: 15 additions & 5 deletions

File tree

docs/docusaurus.config.ts

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,16 @@ import type * as Preset from '@docusaurus/preset-classic';
66

77
const config: Config = {
88
title: 'Expo Open OTA',
9-
tagline: 'An open-source Go implementation of the Expo Updates protocol, designed for production with support for cloud storage like S3 and CDN integration, delivering fast and reliable OTA updates for React Native apps.',
9+
tagline:
10+
'An open-source Go implementation of the Expo Updates protocol, designed for production with support for cloud storage like S3 and CDN integration, delivering fast and reliable OTA updates for React Native apps.',
1011
favicon: 'img/favicon.ico',
11-
scripts: [{
12-
src: 'https://plausible.io/js/script.js', defer: true, 'data-domain': 'axelmarciano.github.io/expo-open-ota',
13-
}],
12+
scripts: [
13+
{
14+
src: 'https://plausible.io/js/script.js',
15+
defer: true,
16+
'data-domain': 'axelmarciano.github.io/expo-open-ota',
17+
},
18+
],
1419
// Set the production url of your site here
1520
url: 'https://axelmarciano.github.io',
1621
// Set the /<baseUrl>/ pathname under which your site is served
@@ -84,6 +89,11 @@ const config: Config = {
8489
label: 'GitHub',
8590
position: 'right',
8691
},
92+
{
93+
href: 'mailto:expoopenota@gmail.com',
94+
label: 'Contact',
95+
position: 'right',
96+
},
8797
],
8898
},
8999
footer: {
@@ -96,6 +106,6 @@ const config: Config = {
96106
darkTheme: prismThemes.dracula,
97107
},
98108
} satisfies Preset.ThemeConfig,
99-
};
109+
}
100110

101111
export default config;

0 commit comments

Comments
 (0)