Refactor scrolling and enhance UI accessibility.

Replaced inline JavaScript for scrolling and copy functionality with Angular methods. Introduced `ScrollService` for smooth scroll-to-top functionality and added associated styles. Removed unused `isHomePage` method and cleaned up components for better maintainability.
This commit is contained in:
2025-04-05 21:50:54 +02:00
parent c628f1e05b
commit dee84cc1a9
7 changed files with 87 additions and 10 deletions
-3
View File
@@ -35,7 +35,4 @@ export class AppComponent implements OnInit {
this.metaService.updateTag({name: 'keywords', content: this.keywords})
}
public isHomePage(): boolean {
return this.router.url === '/';
}
}