18 lines
391 B
TypeScript
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>
|
|
);
|
|
}
|