* add doctor jobs view * change translation * another translation change * clean up * add analaysis detail view to paths config * translation * merge fix * fix path * move components to shared * refactor * imports * clean up
29 lines
743 B
TypeScript
29 lines
743 B
TypeScript
import { personalAccountNavigationConfig } from '@kit/shared/config';
|
|
import {
|
|
Sidebar,
|
|
SidebarContent,
|
|
SidebarHeader,
|
|
SidebarNavigation,
|
|
} from '@kit/ui/shadcn-sidebar';
|
|
import { Trans } from '@kit/ui/trans';
|
|
|
|
export function HomeSidebar() {
|
|
const collapsible = personalAccountNavigationConfig.sidebarCollapsedStyle;
|
|
|
|
return (
|
|
<Sidebar collapsible={collapsible}>
|
|
<SidebarHeader className="h-24 justify-center">
|
|
<div className="mt-24 flex items-center">
|
|
<h5>
|
|
<Trans i18nKey="common:myActions" />
|
|
</h5>
|
|
</div>
|
|
</SidebarHeader>
|
|
|
|
<SidebarContent>
|
|
<SidebarNavigation config={personalAccountNavigationConfig} />
|
|
</SidebarContent>
|
|
</Sidebar>
|
|
);
|
|
}
|