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:
11
src/app/schedule/schedule.component.ts
Normal file
11
src/app/schedule/schedule.component.ts
Normal 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 {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user