-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.tsx
42 lines (40 loc) · 965 Bytes
/
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
40
41
42
import Link from "next/link";
import Logo from "@/components/logo";
const config = {
logo: (
<>
<Logo className="nx-h-5 nx-w-5" />
<span style={{ marginLeft: ".4em", fontWeight: 700, fontSize: "1.25em" }}>
Pracharya Notes
</span>
</>
),
banner: {
key: "contribute",
text: (
<Link href="/contribute" target="_blank">
🤝 You can contribute to these notes by clicking here. Contribute →
</Link>
),
},
project: {
link: "https://github.com/sahrohit/pracharya",
},
docsRepositoryBase: `https://pracharya.vercel.app/contribute?tab=notes&path=`,
sidebar: {
defaultMenuCollapseLevel: 1,
toggleButton: true,
autoCollapse: true,
},
footer: {
text: (
<div className="flex w-full justify-between gap-4 text-sm">
<span>Copyright © {new Date().getFullYear()} </span>
<a href="https://www.sahrohit.com.np/">
Proudly made with love ❤️ by Rohit Sah
</a>
</div>
),
},
};
export default config;