Start application

This commit is contained in:
Lallois
2025-11-13 15:40:43 +01:00
commit 91876effb4
38 changed files with 9938 additions and 0 deletions

View File

View File

@@ -0,0 +1 @@
<p>customers works!</p>

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-customers',
imports: [],
templateUrl: './customers.html',
styleUrl: './customers.css',
})
export class Customers {
}

View File

@@ -0,0 +1 @@
<p>opportunities works!</p>

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-opportunities',
imports: [],
templateUrl: './opportunities.html',
styleUrl: './opportunities.css',
})
export class Opportunities {
}

View File

View File

@@ -0,0 +1 @@
<p>providers works!</p>

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-providers',
imports: [],
templateUrl: './providers.html',
styleUrl: './providers.css',
})
export class Providers {
}

View File

View File

@@ -0,0 +1 @@
<p>staff works!</p>

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-staff',
imports: [],
templateUrl: './staff.html',
styleUrl: './staff.css',
})
export class Staff {
}

View File

View File

@@ -0,0 +1 @@
<router-outlet/>

View File

@@ -0,0 +1,6 @@
import { Routes } from '@angular/router';
import { Welcome } from './welcome';
export const WELCOME_ROUTES: Routes = [
{ path: '', component: Welcome },
];

View File

@@ -0,0 +1,14 @@
import { Component } from '@angular/core';
import {RouterOutlet} from "@angular/router";
@Component({
selector: 'app-welcome',
imports: [
RouterOutlet
],
templateUrl: './welcome.html',
styleUrl: './welcome.css'
})
export class Welcome {
}