add frontend angular

This commit is contained in:
Tykayn 2025-10-02 22:53:50 +02:00 committed by tykayn
parent f34a5f0a83
commit 070e8435d8
36 changed files with 10209 additions and 6 deletions

View file

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