This repository was archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy paththeme.config.js
More file actions
38 lines (37 loc) · 1.61 KB
/
theme.config.js
File metadata and controls
38 lines (37 loc) · 1.61 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
import Logo from './components/Logo'
import DocSearch from './components/DocSearch'
export default {
repository: 'https://github.com/ReactBricks/react-bricks-docs', // project repo
docsRepository: 'https://github.com/ReactBricks/react-bricks-docs', // docs repo
branch: 'master', // branch of docs
path: '/', // path of docs
titleSuffix: ' – ReactBricks',
nextLinks: true,
prevLinks: true,
search: true,
customSearch: <DocSearch />, // customizable, you can use algolia for example
darkMode: true,
footer: true,
footerText: <>© {new Date().getFullYear()} F2 .net engineering s.r.l.</>,
footerEditOnGitHubLink: true, // will link to the docs repo
logo: <Logo />,
head: (
<>
<meta name="msapplication-TileColor" content="#f65b8e" />
<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="ReactBricks - React Blocks-based CMS" />
<meta
name="og:description"
content="ReactBricks - React Blocks-based CMS"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@ReactBricks" />
<meta name="og:title" content="ReactBricks - React Blocks-based CMS" />
<meta name="apple-mobile-web-app-title" content="ReactBricks" />
<link rel="icon" href="/favicon-32x32.png"></link>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" media="print" onLoad="this.media='all'" />
</>
),
}