Numerous component files have been renamed for better organization and readability. This includes changing 'app' to 'account-layout' in various instances and 'organization' to 'team' to ensure consistency across code. Additionally, dependencies within codes have been updated in line with the renaming. The pull request also includes a minor update to the pnpm-lock file, reflecting the latest version of Next.js.
20 lines
502 B
TypeScript
20 lines
502 B
TypeScript
import { Trans } from '@kit/ui/trans';
|
|
|
|
import { UserAccountHeader } from '~/(dashboard)/home/(user)/_components/user-account-header';
|
|
import { withI18n } from '~/lib/i18n/with-i18n';
|
|
|
|
function UserSettingsLayout(props: React.PropsWithChildren) {
|
|
return (
|
|
<>
|
|
<UserAccountHeader
|
|
title={<Trans i18nKey={'common:yourAccountTabLabel'} />}
|
|
description={'Manage your account settings'}
|
|
/>
|
|
|
|
{props.children}
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default withI18n(UserSettingsLayout);
|