24 lines
814 B
TypeScript
24 lines
814 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { SeoService } from '../../services/seo.service';
|
|
|
|
@Component({
|
|
selector: 'app-privacy-statement',
|
|
standalone: true,
|
|
imports: [CommonModule],
|
|
templateUrl: './privacy-statement.component.html',
|
|
styleUrls: ['./privacy-statement.component.scss']
|
|
})
|
|
export class PrivacyStatementComponent implements OnInit {
|
|
constructor(private seoService: SeoService) {}
|
|
|
|
ngOnInit(): void {
|
|
// Set SEO meta tags for Privacy Statement page
|
|
this.seoService.updateMetaTags({
|
|
title: 'Privacy Statement - BizMatch',
|
|
description: 'Learn how BizMatch collects, uses, and protects your personal information. Read our privacy policy and data protection practices.',
|
|
type: 'website'
|
|
});
|
|
}
|
|
}
|