2023-03-10 23:22:18 +00:00
|
|
|
import React from 'react'
|
|
|
|
import { DocsThemeConfig } from 'nextra-theme-docs'
|
2023-03-14 03:13:09 +00:00
|
|
|
import { useConfig } from 'nextra-theme-docs'
|
2023-03-10 23:22:18 +00:00
|
|
|
|
|
|
|
const config: DocsThemeConfig = {
|
2023-03-12 19:14:15 +00:00
|
|
|
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>
|
|
|
|
</>
|
|
|
|
),
|
2023-03-31 00:43:20 +00:00
|
|
|
i18n: [
|
|
|
|
{ locale: 'en', text: 'English' },
|
2023-04-04 16:18:11 +00:00
|
|
|
{ locale: 'zh', text: '中文' },
|
2023-04-04 20:47:21 +00:00
|
|
|
{ locale: 'jp', text: '日本語'},
|
|
|
|
{ locale: 'pt', text: 'Português' },
|
2023-04-13 17:03:00 +00:00
|
|
|
{ locale: 'it', text: 'Italian' },
|
2023-04-10 02:39:15 +00:00
|
|
|
{ locale: 'tr', text: 'Türkçe' },
|
2023-04-12 10:17:02 +00:00
|
|
|
{ locale: 'es', text: 'Español' },
|
2023-04-22 20:34:24 +00:00
|
|
|
{ locale: 'fr', text: 'Français' },
|
2023-04-22 21:09:10 +00:00
|
|
|
{ locale: 'kr', text: '한국어' },
|
2023-05-12 15:06:22 +00:00
|
|
|
{ locale: `ca`, text: `Català` },
|
2023-05-19 19:24:17 +00:00
|
|
|
{ locale: 'fi', text: 'Finnish' },
|
2023-06-04 17:12:33 +00:00
|
|
|
{ locale: 'ru', text: 'Русский' },
|
2023-03-31 00:43:20 +00:00
|
|
|
],
|
2023-03-14 03:13:09 +00:00
|
|
|
head: function UseHead() {
|
|
|
|
const { title } = useConfig()
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<title>{title ? title + ' | Prompt Engineering Guide': 'Prompt Engineering Guide'} </title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<meta property="og:title" content="Prompt Engineering Guide" />
|
|
|
|
<meta property="og:description" content="A Comprehensive Overview of Prompt Engineering" />
|
|
|
|
<meta
|
|
|
|
name="og:title"
|
|
|
|
content={title ? title + ' | Prompt Engineering Guide' : 'Prompt Engineering Guide'}
|
|
|
|
/>
|
|
|
|
<link rel="icon" href="/144-favicon.svg" type="image/svg+xml" />
|
|
|
|
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
href="/144-favicon-dark.svg"
|
|
|
|
type="image/svg+xml"
|
|
|
|
media="(prefers-color-scheme: dark)"
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
)},
|
2023-03-10 23:22:18 +00:00
|
|
|
project: {
|
2023-03-12 19:14:15 +00:00
|
|
|
link: 'https://github.com/dair-ai/Prompt-Engineering-Guide',
|
2023-03-10 23:22:18 +00:00
|
|
|
},
|
|
|
|
chat: {
|
2023-04-18 03:11:41 +00:00
|
|
|
link: 'https://discord.gg/FUyz9vPAwf',
|
2023-03-10 23:22:18 +00:00
|
|
|
},
|
2023-03-12 19:14:15 +00:00
|
|
|
docsRepositoryBase: 'https://github.com/dair-ai/Prompt-Engineering-Guide/tree/main/',
|
2023-03-10 23:22:18 +00:00
|
|
|
footer: {
|
2023-03-12 19:14:15 +00:00
|
|
|
text: 'Copyright © 2023 DAIR.AI',
|
2023-03-10 23:22:18 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
export default config
|