// app/(account)/layout.tsx import Link from "next/link"; import AccountChrome from "./AccountChrome"; const nav = [ { href: "/account", label: "My Account" }, { href: "/account/settings", label: "Settings" }, { href: "/vault", label: "My Vault" }, ]; export default function AccountLayout({ children }: { children: React.ReactNode }) { return (
{/* Header */}
Account

Settings & Profile

Profile, password, and account settings.

← Back to Builder
{children}
); }