You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prompt-Engineering-Guide/theme.config.tsx

30 lines
864 B
TypeScript

import React from 'react'
import { DocsThemeConfig } from 'nextra-theme-docs'
const config: DocsThemeConfig = {
1 year ago
logo: (
<>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 206 246" fill="none">
<circle cx="40" cy="40" r="40" fill="currentColor"/>
<circle cx="40" cy="206" r="40" fill="currentColor"/>
<circle cx="166" cy="120" r="40" fill="currentColor"/>
</svg>
<span style={{ marginLeft: '.4em', fontWeight: 800 }}>
Prompt Engineering Guide
</span>
</>
),
project: {
1 year ago
link: 'https://github.com/dair-ai/Prompt-Engineering-Guide',
},
chat: {
1 year ago
link: 'https://discord.gg/SKgkVT8BGJ',
},
1 year ago
docsRepositoryBase: 'https://github.com/dair-ai/Prompt-Engineering-Guide/tree/main/',
footer: {
1 year ago
text: 'Copyright © 2023 DAIR.AI',
},
}
export default config