We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7357f08 commit aa5fcd1Copy full SHA for aa5fcd1
1 file changed
theme.config.tsx
@@ -33,9 +33,11 @@ const config: DocsThemeConfig = {
33
],
34
head: function UseHead() {
35
const { title } = useConfig()
36
+ const pageTitle = title ? `${title} | Prompt Engineering Guide` : 'Prompt Engineering Guide';
37
+
38
return (
39
<>
- <title>{title ? title + ' | Prompt Engineering Guide': 'Prompt Engineering Guide'} </title>
40
+ <title>{pageTitle}</title>
41
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
42
<meta property="og:title" content="Prompt Engineering Guide" />
43
<meta property="og:description" content="A Comprehensive Overview of Prompt Engineering" />
0 commit comments