Sidebar Bottom Menu #16

Merged
igorpropisnov merged 3 commits from feature/adding-bottom-menu into main 2024-07-18 22:53:50 +02:00
4 changed files with 5 additions and 5 deletions
Showing only changes of commit 635b30d33b - Show all commits

View File

@ -6,8 +6,8 @@ const simpleLayoutRoutes: Routes = [
{
path: '',
loadComponent: () =>
import('./pages/register-root/register-root.component').then(
(m) => m.RegisterRootComponent
import('./pages/welcome-root/welcome-root.component').then(
(m) => m.WelcomeRootComponent
),
},
{

View File

@ -67,11 +67,11 @@ type AuthAction = 'signin' | 'signup';
new ApiConfiguration({ withCredentials: true }),
},
],
templateUrl: './register-root.component.html',
styleUrl: './register-root.component.scss',
templateUrl: './welcome-root.component.html',
styleUrl: './welcome-root.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class RegisterRootComponent implements OnInit {
export class WelcomeRootComponent implements OnInit {
public dialogBackgroundStyle: { 'background-image': string } | null = null;
public leftBackgroundStyle: { 'background-image': string } | null = null;
public rightBackgroundStyle: { 'background-image': string } | null = null;