mirror of
https://github.com/adam-benyekkou/my_portfolio.git
synced 2026-01-16 12:30:10 +00:00
Added file structure for sections about | hero | header | projects, picked the fonts and colors
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
<app-header />
|
||||
<app-hero />
|
||||
<app-sidebar />
|
||||
<app-footer />
|
||||
|
||||
@@ -2,17 +2,12 @@ import { Component } from '@angular/core';
|
||||
import {FooterComponent} from '../footer/footer.component';
|
||||
import {SidebarComponent} from '../sidebar/sidebar.component';
|
||||
import {HeaderComponent} from '../header/header.component';
|
||||
import {HeroComponent} from '../hero/hero.component';
|
||||
|
||||
@Component({
|
||||
selector: 'app-main-layout',
|
||||
imports: [
|
||||
FooterComponent,
|
||||
SidebarComponent,
|
||||
HeaderComponent
|
||||
],
|
||||
imports: [FooterComponent, SidebarComponent, HeaderComponent, HeroComponent],
|
||||
templateUrl: './main-layout.component.html',
|
||||
styleUrl: './main-layout.component.css'
|
||||
styleUrl: './main-layout.component.css',
|
||||
})
|
||||
export class MainLayoutComponent {
|
||||
|
||||
}
|
||||
export class MainLayoutComponent {}
|
||||
|
||||
Reference in New Issue
Block a user