This commit is contained in:
2026-05-05 00:52:03 +04:00
parent cf634f766f
commit 59bda137e5
29 changed files with 1347 additions and 118 deletions

View File

@@ -0,0 +1,10 @@
import { Component } from '@angular/core';
import { TranslatePipe } from '../../translate/translate.pipe';
@Component({
selector: 'app-contacts-page',
imports: [TranslatePipe],
templateUrl: './contacts-page.html',
styleUrl: './contacts-page.scss'
})
export class ContactsPage {}