diff --git a/typescript-sdk/apps/dojo/scripts/run-dojo-everything.js b/typescript-sdk/apps/dojo/scripts/run-dojo-everything.js
index d93ba15fa..90d76e615 100755
--- a/typescript-sdk/apps/dojo/scripts/run-dojo-everything.js
+++ b/typescript-sdk/apps/dojo/scripts/run-dojo-everything.js
@@ -126,6 +126,7 @@ const dojo = {
LLAMA_INDEX_URL: 'http://localhost:8007',
MASTRA_URL: 'http://localhost:8008',
PYDANTIC_AI_URL: 'http://localhost:8009',
+ NEXT_PUBLIC_CUSTOM_DOMAIN_TITLE: 'cpkdojo.local___CopilotKit Feature Viewer',
}
}
diff --git a/typescript-sdk/apps/dojo/src/components/layout/main-layout.tsx b/typescript-sdk/apps/dojo/src/components/layout/main-layout.tsx
index 3173ecc10..9706452ce 100644
--- a/typescript-sdk/apps/dojo/src/components/layout/main-layout.tsx
+++ b/typescript-sdk/apps/dojo/src/components/layout/main-layout.tsx
@@ -7,6 +7,7 @@ import { Menu, X } from "lucide-react";
import { Button } from "@/components/ui/button";
import { useURLParams } from "@/contexts/url-params-context";
+import { getTitleForCurrentDomain } from "@/utils/domain-config";
export function MainLayout({ children }: { children: React.ReactNode }) {
const [isMobileSidebarOpen, setIsMobileSidebarOpen] = useState(false);
@@ -52,7 +53,7 @@ export function MainLayout({ children }: { children: React.ReactNode }) {
>
{isMobileSidebarOpen ?