2021-08-02 18:42:18 +09:00
import { Component } from '@angular/core' ;
import { Env , StateService } from '../../services/state.service' ;
2023-08-30 23:59:51 +09:00
import { SeoService } from '../../services/seo.service' ;
2021-08-02 18:42:18 +09:00
@Component ( {
selector : 'app-privacy-policy' ,
templateUrl : './privacy-policy.component.html' ,
styleUrls : [ './privacy-policy.component.scss' ]
} )
export class PrivacyPolicyComponent {
officialMempoolSpace = this . stateService . env . OFFICIAL_MEMPOOL_SPACE ;
constructor (
private stateService : StateService ,
2023-08-30 23:59:51 +09:00
private seoService : SeoService ,
2021-08-02 18:42:18 +09:00
) { }
2023-08-30 23:59:51 +09:00
ngOnInit ( ) : void {
this . seoService . setTitle ( 'Privacy Policy' ) ;
2023-09-12 19:55:00 +01:00
this . seoService . setDescription ( 'Trusted third parties are security holes, as are trusted first parties...you should only trust your own self-hosted instance of The Mempool Open Source Project®.' ) ;
2023-08-30 23:59:51 +09:00
}
2021-08-02 18:42:18 +09:00
}