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.
25 lines
588 B
TypeScript
25 lines
588 B
TypeScript
import { PageHeader } from '@kit/ui/page';
|
|
|
|
import { AccountLayoutMobileNavigation } from '~/(dashboard)/home/[account]/_components/account-layout-mobile-navigation';
|
|
|
|
export function AccountLayoutHeader({
|
|
children,
|
|
title,
|
|
description,
|
|
account,
|
|
}: React.PropsWithChildren<{
|
|
title: string | React.ReactNode;
|
|
description?: string | React.ReactNode;
|
|
account: string;
|
|
}>) {
|
|
return (
|
|
<PageHeader
|
|
title={title}
|
|
description={description}
|
|
mobileNavigation={<AccountLayoutMobileNavigation account={account} />}
|
|
>
|
|
{children}
|
|
</PageHeader>
|
|
);
|
|
}
|