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> </div>
<!-- Footer --> <!-- Footer -->
<footer class="footer"> <app-footer></app-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>
</div> </div>
</div> </div>

View File

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

View File

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