diff --git a/src/app/features/top/containers/top/top.component.html b/src/app/features/top/containers/top/top.component.html
index 8715bdef..6014eb24 100644
--- a/src/app/features/top/containers/top/top.component.html
+++ b/src/app/features/top/containers/top/top.component.html
@@ -1,5 +1,3 @@
-
-
diff --git a/src/app/features/top/containers/top/top.component.ts b/src/app/features/top/containers/top/top.component.ts
index 71468c64..dff9f51a 100644
--- a/src/app/features/top/containers/top/top.component.ts
+++ b/src/app/features/top/containers/top/top.component.ts
@@ -1,8 +1,8 @@
-import { ChangeDetectionStrategy, Component } from '@angular/core';
import { NgFor } from '@angular/common';
-import { snsList } from '../../data/sns';
+import { ChangeDetectionStrategy, Component } from '@angular/core';
import { ExternalLinkDirective } from '../../../../shared/external-link/directives/external-link.directive';
import { PageTitleComponent } from '../../../../shared/page-title/page-title/page-title.component';
+import { snsList } from '../../data/sns';
@Component({
selector: 'app-top',
@@ -13,7 +13,6 @@ import { PageTitleComponent } from '../../../../shared/page-title/page-title/pag
imports: [PageTitleComponent, NgFor, ExternalLinkDirective],
})
export class TopComponent {
- readonly name = 'kasaharu (Wataru KASAHARA)';
readonly myInfoList: string[] = ['Web Frontend Engineer', 'Angular Japan User Group Staff'];
readonly snsList = snsList;
}
diff --git a/src/app/features/top/top.component.ts b/src/app/features/top/top.component.ts
index 8a8ee785..1f9e1676 100644
--- a/src/app/features/top/top.component.ts
+++ b/src/app/features/top/top.component.ts
@@ -1,10 +1,16 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';
+import { PageTitleComponent } from '../../shared/page-title/page-title/page-title.component';
import { TopComponent } from './containers/top/top.component';
@Component({
- template: '
',
+ template: `
+
+
+ `,
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: true,
- imports: [TopComponent],
+ imports: [TopComponent, PageTitleComponent],
})
-export class TopPageComponent {}
+export class TopPageComponent {
+ readonly name = 'kasaharu (Wataru KASAHARA)';
+}