Footer en layout

This commit is contained in:
JuanSanhueza 2025-04-29 11:51:05 -04:00
parent 04597dfed1
commit cb72d48acd
3 changed files with 6 additions and 15 deletions

View File

@ -18,15 +18,6 @@
</div>
<!-- Footer -->
<footer class="footer">
<div class="footer-left">
<div>Superintendencia de Servicios Sanitarios</div>
<div>Área de Información y Tecnología</div>
</div>
<div class="footer-right">
<div>Dirección: Moneda 673 Piso 9 - Metro Santa Lucía</div>
<div>Mesa Central +56 2 23824000</div>
</div>
</footer>
<app-footer></app-footer>
</div>
</div>

View File

@ -3,6 +3,7 @@ import { CommonModule } from '@angular/common';
import { RouterModule } from '@angular/router';
import { NavbarComponent } from '../navbar/navbar.component';
import { SidebarComponent } from '../sidebar/sidebar.component';
import { FooterComponent } from "../footer/footer.component";
@Component({
selector: 'app-layout',
@ -10,8 +11,9 @@ import { SidebarComponent } from '../sidebar/sidebar.component';
CommonModule,
RouterModule,
NavbarComponent,
SidebarComponent
],
SidebarComponent,
FooterComponent
],
templateUrl: './layout.component.html',
styleUrl: './layout.component.scss',
standalone: true,

View File

@ -88,5 +88,3 @@
</p-accordionTab>
</p-accordion>
</div>
<!-- FOOTER -->
<app-footer></app-footer>