The key changes made in this code include the addition of a Super Admin layout. Also, subscription functionalities are updated and optimized. This ensures read, write permissions are specific to the relevant user and a helper function has been implemented to check if an account has an active subscription. Furthermore, UI enhancements have been made to the accounts table in the administration section. The seed data has also been modified.
23 lines
605 B
TypeScript
23 lines
605 B
TypeScript
import { Page, PageBody, PageHeader } from '@kit/ui/page';
|
|
|
|
import { AdminSidebar } from '~/admin/_components/admin-sidebar';
|
|
import { AdminMobileNavigation } from '~/admin/_components/mobile-navigation';
|
|
|
|
export const metadata = {
|
|
title: `Super Admin`,
|
|
};
|
|
|
|
export default function AdminLayout(props: React.PropsWithChildren) {
|
|
return (
|
|
<Page sidebar={<AdminSidebar />}>
|
|
<PageHeader
|
|
mobileNavigation={<AdminMobileNavigation />}
|
|
title={'Super Admin'}
|
|
description={`Your SaaS stats at a glance`}
|
|
/>
|
|
|
|
<PageBody>{props.children}</PageBody>
|
|
</Page>
|
|
);
|
|
}
|