forked from feds201/Programers-Handbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.jsx
53 lines (41 loc) · 1.39 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
49
50
51
52
53
import React from 'react';
export default {
logo: (
<>
<img style={{borderRadius: '50%', marginTope: '10px'}} src="https://i.imgur.com/5qow8cH.png" alt="CS-Club" width="30" height="auto"/>
<span> </span>
<span> </span>
{/*<img style={{borderRadius: '50%', marginTope: '10px'}} src="https://i.imgur.com/GmdZ72B.png" alt="FEDS201" width="30" height="30"/>*/}
{/*<span> </span>*/}
<text >Programmers Handbook</text>
</>
),
project: {
link: 'https://github.com/Rochester-CS-Club'
},
footer: {
text: (
<span>
<a href="https://feds201.com" target="_blank" rel="noopener noreferrer">
FEDS201 <span style={{color: '#888'}}></span>
</a>
{new Date().getFullYear()} ©{' '}
<a href="https://rhs-csclub.vercel.app" target="_blank" rel="noopener noreferrer">
CS-Club
</a>
</span>
)
},
banner: {
key: '1.0-release',
text: (
<a href="#">
🎉 Programmers Handbook 1.0 is released. Read more →
</a>
)
},
feedback: {
content: 'Give Feedback',
labels: 'feedback,documentation',
},
};