diff --git a/apps/self-service/src/app/app.html b/apps/self-service/src/app/app.html index 2339c6a..2a9e1eb 100644 --- a/apps/self-service/src/app/app.html +++ b/apps/self-service/src/app/app.html @@ -1,2 +1,5 @@ - - +
+

Zelfservice — BIG-registratie

+

Portaal voor zorgprofessionals. Inloggen en indienen volgt in S-08c.

+ +
diff --git a/apps/self-service/src/app/app.ts b/apps/self-service/src/app/app.ts index 34f0d26..76e9c63 100644 --- a/apps/self-service/src/app/app.ts +++ b/apps/self-service/src/app/app.ts @@ -1,9 +1,8 @@ import { Component } from '@angular/core'; import { RouterModule } from '@angular/router'; -import { NxWelcome } from './nx-welcome'; @Component({ - imports: [NxWelcome, RouterModule], + imports: [RouterModule], selector: 'app-root', templateUrl: './app.html', styleUrl: './app.css', diff --git a/apps/self-service/src/app/nx-welcome.ts b/apps/self-service/src/app/nx-welcome.ts deleted file mode 100644 index ba6fe51..0000000 --- a/apps/self-service/src/app/nx-welcome.ts +++ /dev/null @@ -1,946 +0,0 @@ -import { Component, ViewEncapsulation } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -@Component({ - selector: 'app-nx-welcome', - imports: [CommonModule], - template: ` - - - - -
-
- -
-

- Hello there, - Welcome self-service 👋 -

-
- -
-
-

- - - - You're up and running -

- What's next? -
-
- - - -
-
- - - -
-

Next steps

-

Here are some things you can do with Nx:

-
- - - - - Build, test and lint your app - -
# Build
-nx build 
-# Test
-nx test 
-# Lint
-nx lint 
-# Run them together!
-nx run-many -t build test lint
-
-
- - - - - View project details - -
nx show project self-service
-
- -
- - - - - View interactive project graph - -
nx graph
-
- -
- - - - - Add UI library - -
# Generate UI lib
-nx g @nx/angular:lib ui
-# Add a component
-nx g @nx/angular:component ui/src/lib/button
-
-
-

- Carefully crafted with - - - -

-
-
- `, - styles: [], - encapsulation: ViewEncapsulation.None, -}) -export class NxWelcome {}