-
Notifications
You must be signed in to change notification settings - Fork 6
/
theme.config.tsx
39 lines (37 loc) · 1.51 KB
/
theme.config.tsx
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
import React from "react";
import Image from 'next/image'
import { DocsThemeConfig } from 'nextra-theme-docs'
const config: DocsThemeConfig = {
logo: <span className="font-extrabold flex items-center gap-2">
<Image src="/assets/logo.png" alt="logo" width={35} height={35} />
<p className="text-xl">Reclaim</p>
</span>,
banner: {
key: 'connect-key',
text: (
<div className="flex flex-col gap-1 p-2">
<p>✨Works out of the box guarantee. If you face any issue at all, hit us up <a href="https://t.me/protocolreclaim" target='_blank' className="underline ">on Telegram</a> and we will write the integration for you.</p>
</div>
)
},
head: (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Reclaim Developer Docs" />
<meta name="keywords" content="reclaim, reclaim protocol, zero-knowledge, zk, identity, decentralised, deco, tls"></meta>
<meta property="og:description" content="Build apps upon user data from around the internet" />
</>
),
project: {
link: 'https://github.com/reclaimprotocol/docs',
},
chat: {
link: 'https://t.me/protocolreclaim',
icon: <Image src='/assets/icons/tg.png' width={30} height={30} alt='contact'/>
},
docsRepositoryBase: 'https://github.com/reclaimprotocol/docs/tree/main',
footer: {
text: 'Reclaim Protocol © 2024',
},
}
export default config;