This commit is contained in:
marko-kraemer 2025-04-21 19:07:41 +01:00
parent 025fa969f2
commit 5afeacfc45
4 changed files with 9 additions and 9 deletions

View File

@ -925,18 +925,18 @@ export default function ThreadPage({ params }: { params: Promise<ThreadParams> }
useEffect(() => {
if (projectName) {
// Update document title when project name changes
document.title = `${projectName} | Kortix Manus`;
document.title = `${projectName} | Kortix Suna`;
// Update meta tags for SEO
const metaDescription = document.querySelector('meta[name="description"]');
if (metaDescription) {
metaDescription.setAttribute('content', `${projectName} - Interactive agent conversation powered by Kortix Manus`);
metaDescription.setAttribute('content', `${projectName} - Interactive agent conversation powered by Kortix Suna`);
}
// Update OpenGraph tags if they exist
const ogTitle = document.querySelector('meta[property="og:title"]');
if (ogTitle) {
ogTitle.setAttribute('content', `${projectName} | Kortix Manus`);
ogTitle.setAttribute('content', `${projectName} | Kortix Suna`);
}
const ogDescription = document.querySelector('meta[property="og:description"]');

View File

@ -1,11 +1,11 @@
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Agent Conversation | Kortix Manus",
description: "Interactive agent conversation powered by Kortix Manus",
title: "Agent Conversation | Kortix Suna",
description: "Interactive agent conversation powered by Kortix Suna",
openGraph: {
title: "Agent Conversation | Kortix Manus",
description: "Interactive agent conversation powered by Kortix Manus",
title: "Agent Conversation | Kortix Suna",
description: "Interactive agent conversation powered by Kortix Suna",
type: "website",
},
};

View File

@ -5,7 +5,7 @@ export const metadata: Metadata = {
description: 'View a shared AI conversation',
openGraph: {
title: 'Shared AI Conversation',
description: 'View a shared AI conversation from Kortix Manus',
description: 'View a shared AI conversation from Kortix Suna',
images: ['/kortix-logo.png'],
},
};

View File

@ -1080,7 +1080,7 @@ export default function ThreadPage({ params }: { params: Promise<ThreadParams> }
const metaDescription = document.querySelector('meta[name="description"]');
if (metaDescription) {
metaDescription.setAttribute('content', `${projectName} - Public AI conversation shared from Kortix Manus`);
metaDescription.setAttribute('content', `${projectName} - Public AI conversation shared from Kortix Suna`);
}
const ogTitle = document.querySelector('meta[property="og:title"]');