-
diff --git a/docs/src/components/Navbar.tsx b/docs/src/components/Navbar.tsx
index c76c2285e..51044e9c7 100644
--- a/docs/src/components/Navbar.tsx
+++ b/docs/src/components/Navbar.tsx
@@ -13,7 +13,6 @@ const MENU_ITEMS = [
{ name: 'Changelog', href: '/changelog' },
{ name: 'Blog', href: '/blog' },
{ name: 'Handbook', href: '/handbook' },
- { name: 'API Reference', href: '/api-reference' },
]
const Navbar = ({ noScroll }: { noScroll?: boolean }) => {
diff --git a/docs/src/pages/docs/desktop/index.mdx b/docs/src/pages/docs/desktop/index.mdx
index 27b51f5c2..5e37e76b3 100644
--- a/docs/src/pages/docs/desktop/index.mdx
+++ b/docs/src/pages/docs/desktop/index.mdx
@@ -1,5 +1,5 @@
---
-title: Jan
+title: Overview
description: Working towards open superintelligence through community-driven AI
keywords:
[
diff --git a/docs/src/pages/docs/server/overview.mdx b/docs/src/pages/docs/server/overview.mdx
index 2471119c9..eade5bbe4 100644
--- a/docs/src/pages/docs/server/overview.mdx
+++ b/docs/src/pages/docs/server/overview.mdx
@@ -1,5 +1,5 @@
---
-title: Jan Server
+title: Overview
description: A comprehensive self-hosted AI server platform that provides OpenAI-compatible APIs, multi-tenant organization management, and AI model inference capabilities.
keywords:
[
diff --git a/docs/src/pages/index.mdx b/docs/src/pages/index.mdx
index 8c7ae4db7..ce0b3372b 100644
--- a/docs/src/pages/index.mdx
+++ b/docs/src/pages/index.mdx
@@ -1,6 +1,6 @@
---
-title: "Jan - Open-source ChatGPT alternative that runs 100% offline"
-description: "Jan takes the best of open-source AI and packages it into an easy-to-use product. We exist to build Open Superintelligence that runs on a $1,000 laptop."
+title: "Open source ChatGPT alternative that runs offline"
+description: "Jan is building Open Superintelligence. It’s the open-source ChatGPT alternative that leverages the best of open-source AI."
keywords:
[
Jan,
diff --git a/docs/theme.config.tsx b/docs/theme.config.tsx
index 6cbc24208..44f0335bf 100644
--- a/docs/theme.config.tsx
+++ b/docs/theme.config.tsx
@@ -106,8 +106,15 @@ const config: DocsThemeConfig = {
},
head: function useHead() {
const { title, frontMatter } = useConfig()
- const titleTemplate = (frontMatter?.title || title) + ' - ' + 'Jan'
const { asPath } = useRouter()
+ const titleTemplate =
+ (asPath.includes('/desktop')
+ ? 'Jan Desktop'
+ : asPath.includes('/server')
+ ? 'Jan Server'
+ : 'Jan') +
+ ' - ' +
+ (frontMatter?.title || title)
return (
@@ -144,7 +151,9 @@ const config: DocsThemeConfig = {
content={
frontMatter?.ogImage
? 'https://jan.ai/' + frontMatter?.ogImage
- : 'https://jan.ai/assets/images/general/og-image.png'
+ : asPath.includes('/docs')
+ ? 'https://jan.ai/assets/images/general/og-image-docs.png'
+ : 'https://jan.ai/assets/images/general/og-image.png'
}
/>