From 5afeacfc456407bd4e7dd915487c6d03606e3172 Mon Sep 17 00:00:00 2001 From: marko-kraemer Date: Mon, 21 Apr 2025 19:07:41 +0100 Subject: [PATCH] wip --- frontend/src/app/(dashboard)/agents/[threadId]/page.tsx | 6 +++--- frontend/src/app/(dashboard)/agents/layout.tsx | 8 ++++---- frontend/src/app/share/[threadId]/layout.tsx | 2 +- frontend/src/app/share/[threadId]/page.tsx | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/frontend/src/app/(dashboard)/agents/[threadId]/page.tsx b/frontend/src/app/(dashboard)/agents/[threadId]/page.tsx index d08ee4a6..cfa78076 100644 --- a/frontend/src/app/(dashboard)/agents/[threadId]/page.tsx +++ b/frontend/src/app/(dashboard)/agents/[threadId]/page.tsx @@ -925,18 +925,18 @@ export default function ThreadPage({ params }: { params: Promise } 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"]'); diff --git a/frontend/src/app/(dashboard)/agents/layout.tsx b/frontend/src/app/(dashboard)/agents/layout.tsx index 65ceea5f..1ddad168 100644 --- a/frontend/src/app/(dashboard)/agents/layout.tsx +++ b/frontend/src/app/(dashboard)/agents/layout.tsx @@ -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", }, }; diff --git a/frontend/src/app/share/[threadId]/layout.tsx b/frontend/src/app/share/[threadId]/layout.tsx index 58870b1f..a12a2651 100644 --- a/frontend/src/app/share/[threadId]/layout.tsx +++ b/frontend/src/app/share/[threadId]/layout.tsx @@ -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'], }, }; diff --git a/frontend/src/app/share/[threadId]/page.tsx b/frontend/src/app/share/[threadId]/page.tsx index 5e4ec3fb..eb67efb5 100644 --- a/frontend/src/app/share/[threadId]/page.tsx +++ b/frontend/src/app/share/[threadId]/page.tsx @@ -1080,7 +1080,7 @@ export default function ThreadPage({ params }: { params: Promise } 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"]');