File architecture and layout component init

This commit is contained in:
AdamBtech
2025-05-19 16:45:33 +02:00
parent 97d457f2b9
commit 98cc83148d
19 changed files with 75 additions and 0 deletions

View File

@@ -92,5 +92,8 @@
}
}
}
},
"cli": {
"analytics": "4f33e7fa-04db-4ebd-b6fd-8b5438dbb3ff"
}
}

View File

@@ -0,0 +1 @@
<p>project works!</p>

View File

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

View File

@@ -0,0 +1 @@
<p>projects-list works!</p>

View File

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

View File

@@ -0,0 +1 @@
<p>footer works!</p>

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

View File

@@ -0,0 +1 @@
<p>header works!</p>

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

View File

@@ -0,0 +1 @@
<p>main-layout works!</p>

View File

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

View File

@@ -0,0 +1 @@
<p>sidebar works!</p>

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