import type { Metadata } from "next"; export const metadata: Metadata = { title: "Settings | AP Cash", description: "Manage your profile and organization settings", }; export default function SettingsLayout({ children, }: { children: React.ReactNode; }) { return (
{children}
); }