Added components architecture and order to main layout

This commit is contained in:
AdamBtech
2025-05-20 11:13:00 +02:00
parent 4517ca0201
commit 7b1e02d8bf
32 changed files with 173 additions and 76 deletions

View File

@@ -1 +1,3 @@
<p>about-display works!</p>
<section>
<p>ABOUT SECTION</p>
</section>

View File

@@ -0,0 +1,3 @@
<section>
<p>CONTACT FORM AND LINKS</p>
</section>

View File

@@ -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 {
}

View File

@@ -0,0 +1,3 @@
<footer class="bg-nier-bg">
<p>FOOTER</p>
</footer>

View 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 {
}

View File

@@ -0,0 +1 @@
<p>SIDEBAR</p>

View File

@@ -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 {
}