feat(front-end): contact form and about separated
Some checks failed
Build, Test and Deploy / test-backend (push) Failing after 17s
Build, Test and Deploy / build-and-push (push) Has been skipped
Build, Test and Deploy / deploy (push) Has been skipped

This commit is contained in:
2026-02-04 15:17:29 +01:00
parent d816eeda1d
commit 2f7e8798d2
9 changed files with 437 additions and 81 deletions

View File

@@ -0,0 +1,8 @@
import { Routes } from '@angular/router';
export const CONTACT_ROUTES: Routes = [
{
path: '',
loadComponent: () => import('./contact-page.component').then(m => m.ContactPageComponent)
}
];