diff --git a/components/frontend/src/app/integrations/layout.tsx b/components/frontend/src/app/integrations/layout.tsx new file mode 100644 index 000000000..aa7e230dc --- /dev/null +++ b/components/frontend/src/app/integrations/layout.tsx @@ -0,0 +1,13 @@ +import type { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Integrations · Ambient Code Platform", +}; + +export default function IntegrationsLayout({ + children, +}: { + children: React.ReactNode; +}) { + return children; +} diff --git a/components/frontend/src/app/projects/[name]/page.tsx b/components/frontend/src/app/projects/[name]/page.tsx index 6aca3b717..c2e673ba6 100644 --- a/components/frontend/src/app/projects/[name]/page.tsx +++ b/components/frontend/src/app/projects/[name]/page.tsx @@ -127,51 +127,54 @@ export default function ProjectDetailsPage() { } return ( - - - - {/* Sticky header with breadcrumbs and sidebar trigger */} -
- - - - - - - Workspaces - - - - - {projectName} - - - -
- - {/* Page content */} -
- - -
- - {/* Main Content */} - {activeSection === 'sessions' && } - {activeSection === 'schedules' && } - {activeSection === 'sharing' && } - {activeSection === 'keys' && } - {activeSection === 'settings' && } -
-
-
+ <> + {`${project?.displayName || projectName} · Ambient Code Platform`} + + + + {/* Sticky header with breadcrumbs and sidebar trigger */} +
+ + + + + + + Workspaces + + + + + {projectName} + + + +
+ + {/* Page content */} +
+ + +
+ + {/* Main Content */} + {activeSection === 'sessions' && } + {activeSection === 'schedules' && } + {activeSection === 'sharing' && } + {activeSection === 'keys' && } + {activeSection === 'settings' && } +
+
+
+ ); } diff --git a/components/frontend/src/app/projects/[name]/sessions/[sessionName]/page.tsx b/components/frontend/src/app/projects/[name]/sessions/[sessionName]/page.tsx index b0f4dad0e..ebc2e1591 100644 --- a/components/frontend/src/app/projects/[name]/sessions/[sessionName]/page.tsx +++ b/components/frontend/src/app/projects/[name]/sessions/[sessionName]/page.tsx @@ -1458,6 +1458,7 @@ export default function ProjectSessionDetailPage({ return ( <> + {`${session.spec.displayName || session.metadata.name} · Ambient Code Platform`}
{/* Fixed header */}