feat: dmca footer

This commit is contained in:
2024-07-21 00:31:52 +03:00
parent f3a3344004
commit c8168580d6
6 changed files with 40 additions and 4 deletions

View File

@@ -1,12 +1,19 @@
import { Component } from "@angular/core";
import { RouterModule } from "@angular/router";
import { AppService } from "./app.service";
import { FooterComponent } from "./components/footer/footer.component";
import { HeaderComponent } from "./components/header/header.component";
import { NotificationComponent } from "./components/notification/notification.component";
@Component({
standalone: true,
imports: [RouterModule, HeaderComponent, NotificationComponent, NotificationComponent],
imports: [
RouterModule,
HeaderComponent,
NotificationComponent,
NotificationComponent,
FooterComponent,
],
selector: "app-root",
templateUrl: "./app.component.html",
styleUrl: "./app.component.less",