From 115c599fd8ad96630cd4acd8c7aa40e5ab506244 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Mon, 2 Dec 2024 17:00:40 -0700 Subject: [PATCH] remove welcome component --- .../src/app/components/welcome.component.ts | 48 ------------------- 1 file changed, 48 deletions(-) delete mode 100644 web/projects/ui/src/app/components/welcome.component.ts diff --git a/web/projects/ui/src/app/components/welcome.component.ts b/web/projects/ui/src/app/components/welcome.component.ts deleted file mode 100644 index 00d42795a..000000000 --- a/web/projects/ui/src/app/components/welcome.component.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { Component, inject, Inject } from '@angular/core' -import { TuiDialogContext, TuiButton } from '@taiga-ui/core' -import { POLYMORPHEUS_CONTEXT } from '@taiga-ui/polymorpheus' - -@Component({ - standalone: true, - template: ` -

- This release: - 0.3.5 -

-

- View the complete - - release notes - - for more details. -

-
Highlights
- - -

- -

- `, - styles: 'li { margin-bottom: 0.5rem }', - imports: [TuiButton], -}) -export class WelcomeComponent { - readonly context = inject(POLYMORPHEUS_CONTEXT) -}