This commit is contained in:
2026-02-17 13:42:46 +00:00
parent a058d1e0bf
commit c8141a07f8
27 changed files with 9788 additions and 2 deletions

9
src/app/app.routes.ts Normal file
View File

@@ -0,0 +1,9 @@
import { Routes } from '@angular/router';
import {HomePage} from './pages/homepage/homepage';
export const routes: Routes = [
{
path: '',
component: HomePage
}
];