feat: enhance dynamic forms and popups for About, Contact, and Resume sections; add project detail popup

This commit is contained in:
2026-02-15 05:27:23 +05:30
parent 55b436c7d2
commit 58929ae6d4
21 changed files with 605 additions and 87 deletions
-6
View File
@@ -9,8 +9,6 @@ export class AdminQuery extends Query<AdminState> {
constructor() {
super(inject(AdminStore));
}
// Candidate
candidateId$ = this.select('candidateId');
// About
about$ = this.select('about');
@@ -47,8 +45,4 @@ export class AdminQuery extends Query<AdminState> {
getResume() {
return this.getValue().resume;
}
getCandidateId() {
return this.getValue().candidateId;
}
}