add home, header & footer components

This commit is contained in:
2025-02-24 18:10:29 -05:00
parent 43d4f9c738
commit 9484c73c0c
12 changed files with 119 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { Component } from '@angular/core';
@Component({
standalone: true,
selector: 'app-home',
imports: [],
templateUrl: './home.component.html',
styleUrl: './home.component.scss',
})
export class HomeComponent {}