Pool module refactor

This commit is contained in:
Daniel Rodriguez 2021-08-05 19:22:00 +02:00
parent ea73b94e24
commit c266c7602b
12 changed files with 50 additions and 22 deletions

View file

@ -0,0 +1,7 @@
<div id="nav">
<img src="../../assets/images/logo.png" alt="TFTPaths">
</div>
<app-home></app-home>
<div id="footer">
</div>

View file

@ -0,0 +1,11 @@
#nav {
width: 100%;
text-align: center;
}
#footer {
width: 100%;
text-align: center;
color: white;
padding: 2% 0 2% 0;
}

View file

@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-layout',
templateUrl: './layout.component.html',
styleUrls: ['./layout.component.scss']
})
export class LayoutComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}