'use client' import { SettingsNav } from '@/components/settings' export default function SettingsLayout({ children, }: { children: React.ReactNode }) { return (
{/* Architectural header — matches Agents page */}

Paramètres

Configuration & Préférences

{/* Tab nav flush to the border-bottom of header */}
{/* Page Content */}
{children}
) }