diff --git a/apps/NwaifuAnime/src/app/app.component.html b/apps/NwaifuAnime/src/app/app.component.html
index f6d2c90..108fcc6 100644
--- a/apps/NwaifuAnime/src/app/app.component.html
+++ b/apps/NwaifuAnime/src/app/app.component.html
@@ -8,7 +8,8 @@
}
-
+
diff --git a/apps/NwaifuAnime/src/app/app.component.less b/apps/NwaifuAnime/src/app/app.component.less
index c0e8fc0..af07b7d 100644
--- a/apps/NwaifuAnime/src/app/app.component.less
+++ b/apps/NwaifuAnime/src/app/app.component.less
@@ -1,4 +1,4 @@
-main {
+.content {
overflow-y: auto;
height: calc(100vh - 3rem);
}
diff --git a/apps/NwaifuAnime/src/app/app.component.ts b/apps/NwaifuAnime/src/app/app.component.ts
index 2ebfc62..099782a 100644
--- a/apps/NwaifuAnime/src/app/app.component.ts
+++ b/apps/NwaifuAnime/src/app/app.component.ts
@@ -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",
diff --git a/apps/NwaifuAnime/src/app/components/footer/footer.component.html b/apps/NwaifuAnime/src/app/components/footer/footer.component.html
new file mode 100644
index 0000000..c9b6300
--- /dev/null
+++ b/apps/NwaifuAnime/src/app/components/footer/footer.component.html
@@ -0,0 +1,19 @@
+
diff --git a/apps/NwaifuAnime/src/app/components/footer/footer.component.less b/apps/NwaifuAnime/src/app/components/footer/footer.component.less
new file mode 100644
index 0000000..e69de29
diff --git a/apps/NwaifuAnime/src/app/components/footer/footer.component.ts b/apps/NwaifuAnime/src/app/components/footer/footer.component.ts
new file mode 100644
index 0000000..ce19e33
--- /dev/null
+++ b/apps/NwaifuAnime/src/app/components/footer/footer.component.ts
@@ -0,0 +1,9 @@
+import { Component } from "@angular/core";
+
+@Component({
+ selector: "app-footer",
+ templateUrl: "./footer.component.html",
+ styleUrls: ["./footer.component.less"],
+ standalone: true,
+})
+export class FooterComponent {}