forked from UOK-CS-Batch5/batch5
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.config.jsx
More file actions
60 lines (57 loc) · 1.55 KB
/
theme.config.jsx
File metadata and controls
60 lines (57 loc) · 1.55 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
47
48
49
50
51
52
53
54
55
56
57
58
59
import Logo from "./components/Logo.jsx";
import { DocsThemeConfig } from "nextra-theme-docs";
import { useConfig } from "nextra-theme-docs";
const config = {
logo: <Logo />,
head: (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="UOK CS 5th Batch" />
<meta property="og:description" content="Meet the UOK CS 5th Batch students and learn about their skills and projects" />
<meta name="description" content="Meet the UOK CS 5th Batch students and learn about their skills and projects" />
</>
),
project: {
name: "batch5",
link: "https://github.com/UOK-CS-Batch5",
},
docsRepositoryBase: 'https://github.com/UOK-CS-Batch5/batch5/discussions',
sidebar: {
defaultMenuCollapseLevel: 1,
autoCollapse: true,
},
toc: {
float: true,
},
// banner: {
// key: 'Welcome to batch5',
// content: (
// <>
// <h1>👋 Welcome to batch5</h1>
// <p>
// This is the official website of batch5. You can find all the resources related to batch5 here.
// </p>
// </>
// ),
// content: (
// <a href="https://github.com/UOK-CS-Batch5" target="_blank">
// 😊 UOK CS 5th Batch. View us here →
// </a>
// )
// },
footer: {
content: (
<>
<h1>
<a href="https://github.com/UOK-CS-Batch5" target="_blank">
{"MIT License © 2024"}
</a>
</h1>
</>
),
},
editLink: {
content: null,
},
};
export default config;