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 (
-
-
- {/* Main Content */}
- {activeSection === 'sessions' &&