18 lines
698 B
Plaintext
18 lines
698 B
Plaintext
@attribute [Route(RouteConstants.Profile.Tree)]
|
|
@using FrontOffice.Main.Pages.Profile.Components
|
|
|
|
<PageTitle>شجرهنامه</PageTitle>
|
|
|
|
<MudContainer MaxWidth="MaxWidth.Large" Class="py-6">
|
|
<MudStack Spacing="3">
|
|
<MudStack Row="true" Justify="Justify.SpaceBetween" AlignItems="AlignItems.Center">
|
|
<MudText Typo="Typo.h5">شجرهنامه</MudText>
|
|
<MudButton Variant="Variant.Text" StartIcon="@Icons.Material.Filled.ArrowBack" Href="@RouteConstants.Profile.Index">بازگشت</MudButton>
|
|
</MudStack>
|
|
|
|
<MudPaper Elevation="2" Class="pa-4 rounded-lg">
|
|
<OrganizationChart />
|
|
</MudPaper>
|
|
</MudStack>
|
|
</MudContainer>
|