update footer, header and home compoents
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-02-25 22:21:31 -05:00
parent 1fe649ea45
commit 00e7ba98d3
10 changed files with 139 additions and 15 deletions

View File

@@ -1,9 +1,12 @@
import { Component } from '@angular/core';
import { MatButtonModule } from '@angular/material/button';
import { MatIconModule } from '@angular/material/icon';
@Component({
standalone: true,
selector: 'app-home',
imports: [],
imports: [MatButtonModule, MatIconModule],
templateUrl: './home.component.html',
styleUrl: './home.component.scss',
})