mirror of
https://github.com/adam-benyekkou/my_portfolio.git
synced 2026-01-15 20:20:09 +00:00
File architecture and layout component init
This commit is contained in:
@@ -92,5 +92,8 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"cli": {
|
||||
"analytics": "4f33e7fa-04db-4ebd-b6fd-8b5438dbb3ff"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
<p>project works!</p>
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-project',
|
||||
imports: [],
|
||||
templateUrl: './project.component.html',
|
||||
styleUrl: './project.component.css'
|
||||
})
|
||||
export class ProjectComponent {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<p>projects-list works!</p>
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-projects-list',
|
||||
imports: [],
|
||||
templateUrl: './projects-list.component.html',
|
||||
styleUrl: './projects-list.component.css'
|
||||
})
|
||||
export class ProjectsListComponent {
|
||||
|
||||
}
|
||||
1
src/app/layout/components/footer/footer.component.html
Normal file
1
src/app/layout/components/footer/footer.component.html
Normal file
@@ -0,0 +1 @@
|
||||
<p>footer works!</p>
|
||||
11
src/app/layout/components/footer/footer.component.ts
Normal file
11
src/app/layout/components/footer/footer.component.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-footer',
|
||||
imports: [],
|
||||
templateUrl: './footer.component.html',
|
||||
styleUrl: './footer.component.css'
|
||||
})
|
||||
export class FooterComponent {
|
||||
|
||||
}
|
||||
1
src/app/layout/components/header/header.component.html
Normal file
1
src/app/layout/components/header/header.component.html
Normal file
@@ -0,0 +1 @@
|
||||
<p>header works!</p>
|
||||
11
src/app/layout/components/header/header.component.ts
Normal file
11
src/app/layout/components/header/header.component.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-header',
|
||||
imports: [],
|
||||
templateUrl: './header.component.html',
|
||||
styleUrl: './header.component.css'
|
||||
})
|
||||
export class HeaderComponent {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<p>main-layout works!</p>
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-main-layout',
|
||||
imports: [],
|
||||
templateUrl: './main-layout.component.html',
|
||||
styleUrl: './main-layout.component.css'
|
||||
})
|
||||
export class MainLayoutComponent {
|
||||
|
||||
}
|
||||
1
src/app/layout/components/sidebar/sidebar.component.html
Normal file
1
src/app/layout/components/sidebar/sidebar.component.html
Normal file
@@ -0,0 +1 @@
|
||||
<p>sidebar works!</p>
|
||||
11
src/app/layout/components/sidebar/sidebar.component.ts
Normal file
11
src/app/layout/components/sidebar/sidebar.component.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-sidebar',
|
||||
imports: [],
|
||||
templateUrl: './sidebar.component.html',
|
||||
styleUrl: './sidebar.component.css'
|
||||
})
|
||||
export class SidebarComponent {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user