-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
138 lines (132 loc) · 3.41 KB
/
docusaurus.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
const organizationName = "jayhuynh";
const projectName = "biasnavi-website";
const config = {
title: "Biasnavi",
tagline:
"Biasnavi handles behaviour, accessibility and interactions so you can implement custom components and design systems for Android, iOS and Web",
url: `https://${organizationName}.github.io`,
baseUrl: `/${projectName}/`,
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
favicon: "img/favicon.ico",
organizationName, // Usually your GitHub org/user name.
projectName, // Usually your repo name.
themeConfig: {
navbar: {
title: "Biasnavi",
logo: {
alt: "My Site Logo",
src: "img/logo.png",
},
items: [
{
to: "docs/",
activeBasePath: "docs",
label: "Docs",
position: "right",
},
{
href: "https://github.com/CIRES-Hub/BiasNavi",
label: "GitHub",
position: "right",
},
{
href:
"https://cires.org.au/",
label: "Hire Us",
position: "right",
},
],
},
algolia: {
apiKey: "e2206a9dbfb5b7bba33d6dccec9acfe1",
indexName: "ReactNativeAria",
placeholder: "Search",
algoliaOptions: {
facetFilters: ["language:en"],
},
},
footer: {
style: "dark",
links: [
{
title: "Docs",
items: [
{
label: "Getting Started",
to: "docs/",
},
],
},
{
title: "Community",
items: [
{
label: "Twitter",
to: "https://twitter.com/geekyants",
},
{
label: "Stack Overflow",
to:
"https://stackoverflow.com/questions/tagged/React-native-aria",
},
{
label: "Discord",
to: "https://discord.com/invite/jpxVeDFqxG",
},
],
},
{
title: "More",
items: [
{
label: "GitHub",
href: "https://github.com/CIRES-Hub/BiasNavi",
},
// {
// label: "Roadmap",
// href: "https://trello.com/b/8HcLFH3K/react-native-aria-roadmap",
// },
{
label: "Contribution Guidelines",
to:
"https://github.com/CIRES-Hub/BiasNavi/blob/main/CONTRIBUTING.md",
},
],
},
{
title: " ",
items: [
{
label: "Built with ❤️ at CIRES ",
href:
"https://geekyants.com/?utm_source=Landing_Page&utm_medium=Made_with_love&utm_campaign=RN_ARIA",
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} CIRES `,
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
showLastUpdateAuthor: true,
showLastUpdateTime: true,
editUrl: `https://github.com/${organizationName}/${projectName}/tree/master/`,
sidebarPath: "./sidebars.js",
},
blog: {
path: "blog",
editUrl: `https://github.com/${organizationName}/${projectName}/tree/master/`,
},
theme: {
customCss: "../src/css/custom.css",
},
},
],
],
};
module.exports = config;