feat: add page cap
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
.under-construction {
|
||||
text-align: center;
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
.under-construction h1 {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.under-construction p {
|
||||
font-size: 1.2rem;
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
<div class="under-construction">
|
||||
<h1>Страница находится в разработке</h1>
|
||||
<p>Пожалуйста, зайдите позже.</p>
|
||||
</div>
|
@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-under-construction',
|
||||
imports: [],
|
||||
templateUrl: './under-construction.component.html',
|
||||
styleUrl: './under-construction.component.css'
|
||||
})
|
||||
export class UnderConstructionComponent {
|
||||
|
||||
}
|
Reference in New Issue
Block a user