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