forked from PinsaraPerera/nextra-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy paththeme.config.jsx
49 lines (46 loc) · 1.1 KB
/
theme.config.jsx
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
import Logo from "./components/Logo.jsx";
import Head from "./components/Head.jsx";
const config = {
logo: <Logo />,
project: {
name: "FOSSUOK",
link: "https://github.com/fossuok",
},
docsRepositoryBase: 'https://github.com/fossuok/nextra-doc-template/issues',
banner: {
key: 'Join Foss UOK',
content: (
<a href="https://docs.google.com/forms/d/e/1FAIpQLSePWol8KVzrh8w-sTsoZCDo7_zwnVmxZznjNJMlA19CBOKmHQ/viewform" target="_blank">
😊 Join FOSS UOK Community. Join here →
</a>
)
},
footer: {
content: (
<>
<h1>
<a href="https://fossuok.org/" target="_blank">
{"MIT License © 2024 FOSSUOK."}
</a>
</h1>
</>
),
},
editLink: {
content: null,
},
head: <Head />,
useNextSeoProps() {
return {
title: "FOSS UOK",
description: "This is design guidelines for FOSS Community University of Kelaniya",
openGraph: {
type: "website",
locale: "en_US",
url: "https://fossuok.org",
site_name: "FOSS UOK",
},
}
},
};
export default config;