Started home page

This commit is contained in:
2026-03-29 00:25:09 +01:00
parent fa937f33bf
commit 0a1e30cf69
2 changed files with 29 additions and 1 deletions
+11 -1
View File
@@ -1,10 +1,20 @@
import {Component} from '@angular/core';
import {IonicModule} from "@ionic/angular";
import {addIcons} from "ionicons";
import {walkOutline, addOutline} from "ionicons/icons";
addIcons({
'profile': walkOutline,
'add': addOutline,
});
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss'],
imports: []
imports: [
IonicModule
]
})
export class HomeComponent {
}