mirror of
https://github.com/adam-benyekkou/my_portfolio.git
synced 2026-01-16 04:30:08 +00:00
Added components architecture and order to main layout
This commit is contained in:
@@ -1 +1,3 @@
|
||||
<p>about-display works!</p>
|
||||
<section>
|
||||
<p>ABOUT SECTION</p>
|
||||
</section>
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
<section>
|
||||
<p>CONTACT FORM AND LINKS</p>
|
||||
</section>
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-contact-display',
|
||||
imports: [],
|
||||
templateUrl: './contact-display.component.html',
|
||||
styleUrl: './contact-display.component.css'
|
||||
})
|
||||
export class ContactDisplayComponent {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
<footer class="bg-nier-bg">
|
||||
<p>FOOTER</p>
|
||||
</footer>
|
||||
11
src/app/features/footer-display/footer-display.component.ts
Normal file
11
src/app/features/footer-display/footer-display.component.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-footer-display',
|
||||
imports: [],
|
||||
templateUrl: './footer-display.component.html',
|
||||
styleUrl: './footer-display.component.css'
|
||||
})
|
||||
export class FooterDisplayComponent {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<p>SIDEBAR</p>
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-sidebar-display',
|
||||
imports: [],
|
||||
templateUrl: './sidebar-display.component.html',
|
||||
styleUrl: './sidebar-display.component.css'
|
||||
})
|
||||
export class SidebarDisplayComponent {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user