Refactor layout and add header, navbar, schedule components

Introduced MainLayoutComponent with header and navbar for consistent app layout. Added HeaderComponent, NavbarComponent, ScheduleComponent, and MainComponent. Updated routing to use MainLayout for main and schedule pages. Renamed home-component to home and main-page to main, removing obsolete main-page files.
This commit is contained in:
2025-10-26 02:16:08 +02:00
parent ad23d48ff1
commit 939ef4190e
22 changed files with 150 additions and 22 deletions

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-schedule',
standalone: false,
templateUrl: './schedule.component.html',
styleUrl: './schedule.component.css'
})
export class ScheduleComponent {
}