add eqlair project

This commit is contained in:
Tykayn 2025-10-01 17:29:17 +02:00 committed by tykayn
parent 55489a049a
commit 51b48fb3ba
35 changed files with 10791 additions and 0 deletions

View file

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