forked from nkowaokwu/igbo_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.jsx
96 lines (91 loc) · 3.39 KB
/
theme.config.jsx
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
/* eslint-disable max-len */
import React from 'react';
export default {
logo: <span>Igbo API Documentation</span>,
project: {
link: 'https://github.com/nkowaokwu/igbo_api',
},
useNextSeoProps() {
return {
titleTemplate: '%s – Igbo API Documentation',
};
},
sidebar: {
titleComponent: ({ title }) => {
if (title === 'docs') {
return <>Igbo API</>;
}
return title;
},
},
docsRepositoryBase: 'https://github.com/nkowaokwu/igbo_api',
head: (
<>
{/* Metadata */}
<meta name="title" content="Technical documentation for the Igbo API" />
<meta name="description" content="Technical documentation for the Igbo API" />
<meta property="og:title" content="Igbo API Documentation" />
<meta property="og:description" content="Technical documentation for the Igbo API" />
<meta property="twitter:title" content="Igbo API Documentation" />
<meta property="twitter:description" content="Technical documentation for the Igbo API" />
<meta property="twitter:image:alt" content="Igbo API Documentation" />
{/* Meta image */}
<meta
property="og:image"
content="https://nkowaokwu.s3.us-west-1.amazonaws.com/assets/icons/igbo_api/igbo_api_banner.png"
/>
<meta
property="twitter:image"
content="https://nkowaokwu.s3.us-west-1.amazonaws.com/assets/icons/igbo_api/igbo_api_banner.png"
/>
{/* Open Graph / Facebook */}
<meta property="og:type" content="website" />
<meta property="og:url" content="https://igboapi.com/" />
{/* Twitter */}
<meta property="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@nkowaokwu" />
<meta property="twitter:url" content="https://igboapi.com/" />
{/* Favicon */}
<link
rel="apple-touch-icon"
sizes="180x180"
href="https://nkowaokwu.s3.us-west-1.amazonaws.com/assets/icons/igbo_api/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="https://nkowaokwu.s3.us-west-1.amazonaws.com/assets/icons/igbo_api/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="https://nkowaokwu.s3.us-west-1.amazonaws.com/assets/icons/igbo_api/favicon/favicon-16x16.png"
/>
</>
),
footer: {
text: (
<span>
©{new Date().getFullYear()}
<a href="https://igboapi.com" target="_blank" rel="noreferrer">
Igbo API
</a>
.
</span>
),
},
chat: {
link: 'https://twitter.com/nkowaokwu',
// eslint-disable-next-line max-len
icon: (
<svg width="24" height="24" viewBox="0 0 248 204">
<path
fill="currentColor"
d="M221.95 51.29c.15 2.17.15 4.34.15 6.53 0 66.73-50.8 143.69-143.69 143.69v-.04c-27.44.04-54.31-7.82-77.41-22.64 3.99.48 8 .72 12.02.73 22.74.02 44.83-7.61 62.72-21.66-21.61-.41-40.56-14.5-47.18-35.07a50.338 50.338 0 0 0 22.8-.87C27.8 117.2 10.85 96.5 10.85 72.46v-.64a50.18 50.18 0 0 0 22.92 6.32C11.58 63.31 4.74 33.79 18.14 10.71a143.333 143.333 0 0 0 104.08 52.76 50.532 50.532 0 0 1 14.61-48.25c20.34-19.12 52.33-18.14 71.45 2.19 11.31-2.23 22.15-6.38 32.07-12.26a50.69 50.69 0 0 1-22.2 27.93c10.01-1.18 19.79-3.86 29-7.95a102.594 102.594 0 0 1-25.2 26.16z"
/>
</svg>
),
},
};