-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.config.tsx
More file actions
46 lines (44 loc) · 1.78 KB
/
Copy paththeme.config.tsx
File metadata and controls
46 lines (44 loc) · 1.78 KB
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
import React from 'react'
import { DocsThemeConfig } from 'nextra-theme-docs'
import CommandPalette from './components/CommandPalette'
const config: DocsThemeConfig = {
logo: (
<div style={{ display: 'flex', alignItems: 'center', gap: '10px' }}>
<span style={{ fontWeight: 800, fontSize: '1.2rem', letterSpacing: '-0.05em' }}>ZBR</span>
<span style={{ opacity: 0.5, fontWeight: 400 }}>Documentation</span>
</div>
),
search: {
component: <CommandPalette isInline />
},
project: {
link: 'https://github.com/zbrlang/zbr',
},
head: (
<>
<title>ZBR Documentation</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="ZBRLang" />
<meta name="description" content="Official documentation for ZBR, a high-performance Discord scripting language built with Rust." />
<meta property="og:title" content="ZBR Documentation" />
<meta property="og:description" content="Official documentation for ZBR, a high-performance Discord scripting language built with Rust." />
<meta property="og:image" content="/images/zbr.png" />
<meta property="og:url" content="https://zbr-website.vercel.app/docs" />
<meta property="og:site_name" content="ZBR" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_US" />
<meta name="apple-mobile-web-app-title" content="ZBR Documentation" />
<link rel="icon" type="image/png" href="/images/zbr.png" />
</>
),
docsRepositoryBase: 'https://github.com/zbrlang/zbr-website/',
footer: {
content: (
<span>
{new Date().getFullYear()} ©{' '}
<a href="https://zbr-website.vercel.app/" target="_blank">ZBRLang</a>.
</span>
)
}
}
export default config