web-production-saas-starter/next_b2b_starter/app/dashboard/settings/layout.tsx
2025-12-16 18:54:41 +04:00

18 lines
391 B
TypeScript

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 (
<div className="mx-auto w-full max-w-6xl px-4 pb-12 pt-4 sm:px-6 lg:px-8">
{children}
</div>
);
}