SEO/AEO, Farb schema, breadcrumbs
This commit is contained in:
23
bizmatch/src/app/pages/legal/terms-of-use.component.ts
Normal file
23
bizmatch/src/app/pages/legal/terms-of-use.component.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { SeoService } from '../../services/seo.service';
|
||||
|
||||
@Component({
|
||||
selector: 'app-terms-of-use',
|
||||
standalone: true,
|
||||
imports: [CommonModule],
|
||||
templateUrl: './terms-of-use.component.html',
|
||||
styleUrls: ['./terms-of-use.component.scss']
|
||||
})
|
||||
export class TermsOfUseComponent implements OnInit {
|
||||
constructor(private seoService: SeoService) {}
|
||||
|
||||
ngOnInit(): void {
|
||||
// Set SEO meta tags for Terms of Use page
|
||||
this.seoService.updateMetaTags({
|
||||
title: 'Terms of Use - BizMatch',
|
||||
description: 'Read the terms and conditions for using BizMatch marketplace. Learn about user responsibilities, listing guidelines, and platform rules.',
|
||||
type: 'website'
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user