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) -}