-
Notifications
You must be signed in to change notification settings - Fork 26
/
theme.config.js
87 lines (87 loc) · 2.78 KB
/
theme.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
export default {
project: { link: 'https://github.com/authorizerdev/docs/' },
docsRepositoryBase: 'https://github.com/authorizerdev/docs/blob/main',
useNextSeoProps() {
return {
titleTemplate: '%s – Authorizer'
}
},
logo: (
<>
<img src="/images/logo.png" alt="logo" style={{ height: 35 }} />
<span
className="mx-2 font-bold md:inline authorizer-logo"
style={{
fontSize: '1.5rem',
letterSpacing: '0.1rem',
}}
>
Authorizer
</span>
</>
),
head: (
<>
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="theme-color" content="#ffffff" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta httpEquiv="Content-Language" content="en" />
<meta
name="description"
content="Your Data Your Control. An Open Source Authentication and Authorization solution for your business. Easy to integrate and quick to implement with available SDKs"
/>
<meta
name="og:description"
content="Your Data Your Control. An Open Source Authentication and Authorization solution for your business. Easy to integrate and quick to implement with available SDKs"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="/images/logo.png" />
<meta name="twitter:site:domain" content="docs.authorizer.dev" />
<meta name="twitter:url" content="https://docs.authorizer.dev" />
<meta name="og:title" content="Authorizer Docs" />
<meta name="og:image" content="/images/logo.png" />
<meta name="apple-mobile-web-app-title" content="Authorizer" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/favicon_io/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="/favicon_io/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon_io/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="96x96"
href="/favicon_io/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon_io/favicon-16x16.png"
/>
<link rel="icon" type="image/png" href="/favicon_io/favicon.ico" />
<meta
name="msapplication-TileImage"
content="/favicon_io/favicon-16x16.png"
/>
</>
),
navigation: true,
editLink: { text: 'Edit this page on GitHub' },
footer: { text: <>{new Date().getFullYear()} © Authorizer.dev.</> },
chat: { link: 'https://discord.gg/UdSTnTccWB' },
sidebar: {
titleComponent: ({ title }) => <>{title}</>,
},
}