-
Notifications
You must be signed in to change notification settings - Fork 23
/
theme.config.jsx
83 lines (81 loc) · 2.52 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import Link from "next/link"
export default {
logo: <div className="flex items-center">
<svg className="h-8 mx-2 dark:text-sky-300 dark:drop-shadow-[0_3px_10px_#bae6fd]"
viewBox="0 0 300 300"
fill="primary"
xmlns="http://www.w3.org/2000/svg"
href="https://sotopia.world"
>
<path d="M250,200c-55.23,0-100-44.77-100-100S194.77,0,250,0"/>
<path d="M50,100c55.23,0,100,44.77,100,100S105.23,300,50,300"/>
<path d="M50,0l100,0c0,55.23-44.77,100-100,100"/>
<path d="M250,300l-100,0c0-55.23,44.77-100,100-100"/>
</svg>
<span className="text-2xl font-bold">Sotopia</span></div>,
project: {
link: 'https://github.com/sotopia-lab/awesome-social-agents',
},
toc: {
backToTop: true,
},
sidebar: {
toggleButton: true,
},
search: {
placeholder: 'Search contents',
},
feedback: {
content: null,
},
head: (
<>
<link rel="icon" href="/awesome-social-agents/favicon.ico" type="image/ico" />
<link rel="icon" href="/awesome-social-agents/favicon.svg" type="image/svg" />
</>
),
footer: {
text: (
<span>
MIT {new Date().getFullYear()} ©{' '}
<a href="https://sotopia.world" target="_blank">
Sotopia Lab
</a>
.
</span>
)
},
banner: {
key: 'cmu-agent-workshop-1',
text: (
<Link href="/contribution" target="_blank">
Want to contribute to this project? ✨ Click here to learn more. 📝 We are also working on a related survey paper. Stay tuned for updates!
</Link>
)
},
useNextSeoProps() {
return {
titleTemplate: '%s – Awesome Social Agents',
description: '',
openGraph: {
type: 'website',
images: [
{
url: 'https://sotopia-lab.github.io/awesome-social-agents/preview.png',
}
],
locale: 'en_US',
url: 'https://sotopia-lab.github.io/awesome-social-agents',
siteName: 'Awesome Social Agents',
title: 'Awesome Social Agents',
description: 'Please check out our curated list of awesome social agents.',
},
twitter: {
cardType: 'summary_large_image',
title: 'Please check out our curated list of awesome social agents.',
image: 'https://sotopia-lab.github.io/awesome-social-agents/preview.png',
},
}
},
// ... other theme options
}