From e25722d806c38edf511ae53902ba56c8c4d86b47 Mon Sep 17 00:00:00 2001 From: Timo Knuth Date: Tue, 3 Feb 2026 20:19:30 +0100 Subject: [PATCH] fix: SEO meta tags and H1 headings optimization - Shortened meta titles for better SERP display (businessListings, commercialPropertyListings) - Optimized meta descriptions to fit within 160 characters (3 pages) - Enhanced H1 headings with descriptive, keyword-rich text (3 pages) - Addresses Seobility recommendations for improved search visibility Co-Authored-By: Claude Sonnet 4.5 --- bizmatch/src/app/pages/home/home.component.ts | 2 +- bizmatch/src/app/pages/legal/privacy-statement.component.html | 2 +- bizmatch/src/app/pages/legal/terms-of-use.component.html | 2 +- .../business-listings/business-listings.component.html | 2 +- .../listings/business-listings/business-listings.component.ts | 4 ++-- .../commercial-property-listings.component.ts | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bizmatch/src/app/pages/home/home.component.ts b/bizmatch/src/app/pages/home/home.component.ts index 23cfe17..6daa81e 100644 --- a/bizmatch/src/app/pages/home/home.component.ts +++ b/bizmatch/src/app/pages/home/home.component.ts @@ -126,7 +126,7 @@ export class HomeComponent { // Set SEO meta tags for home page this.seoService.updateMetaTags({ title: 'BizMatch - Buy & Sell Businesses and Commercial Properties', - description: 'Find profitable businesses for sale, commercial real estate, and franchise opportunities. Browse thousands of verified listings across the US.', + description: 'Buy and sell businesses, commercial properties, and franchises. Browse thousands of verified listings across the United States.', keywords: 'business for sale, businesses for sale, buy business, sell business, commercial property, commercial real estate, franchise opportunities, business broker, business marketplace', type: 'website' }); diff --git a/bizmatch/src/app/pages/legal/privacy-statement.component.html b/bizmatch/src/app/pages/legal/privacy-statement.component.html index 0815366..aaa0759 100644 --- a/bizmatch/src/app/pages/legal/privacy-statement.component.html +++ b/bizmatch/src/app/pages/legal/privacy-statement.component.html @@ -7,7 +7,7 @@ > -

Privacy Statement

+

BizMatch Privacy Policy and Data Protection

diff --git a/bizmatch/src/app/pages/legal/terms-of-use.component.html b/bizmatch/src/app/pages/legal/terms-of-use.component.html index 4173054..40c458c 100644 --- a/bizmatch/src/app/pages/legal/terms-of-use.component.html +++ b/bizmatch/src/app/pages/legal/terms-of-use.component.html @@ -7,7 +7,7 @@ > -

Terms of Use

+

BizMatch Terms of Use and User Agreement

diff --git a/bizmatch/src/app/pages/listings/business-listings/business-listings.component.html b/bizmatch/src/app/pages/listings/business-listings/business-listings.component.html index aea60a0..3ccf233 100644 --- a/bizmatch/src/app/pages/listings/business-listings/business-listings.component.html +++ b/bizmatch/src/app/pages/listings/business-listings/business-listings.component.html @@ -14,7 +14,7 @@
-

Businesses for Sale

+

Businesses for Sale - Find Your Next Business Opportunity

Discover profitable business opportunities across the United States. Browse verified listings from business owners and brokers.

diff --git a/bizmatch/src/app/pages/listings/business-listings/business-listings.component.ts b/bizmatch/src/app/pages/listings/business-listings/business-listings.component.ts index a4cdac0..517d0ac 100644 --- a/bizmatch/src/app/pages/listings/business-listings/business-listings.component.ts +++ b/bizmatch/src/app/pages/listings/business-listings/business-listings.component.ts @@ -87,8 +87,8 @@ export class BusinessListingsComponent implements OnInit, OnDestroy { // Set SEO meta tags for business listings page this.seoService.updateMetaTags({ - title: 'Businesses for Sale - Profitable Opportunities | BizMatch', - description: 'Browse thousands of businesses for sale. Find restaurants, franchises, retail stores, and more. Verified listings from owners and brokers.', + title: 'Businesses for Sale | BizMatch', + description: 'Browse thousands of businesses for sale including restaurants, franchises, and retail stores. Verified listings nationwide.', keywords: 'businesses for sale, buy a business, business opportunities, franchise for sale, restaurant for sale, retail business for sale, business broker listings', type: 'website' }); diff --git a/bizmatch/src/app/pages/listings/commercial-property-listings/commercial-property-listings.component.ts b/bizmatch/src/app/pages/listings/commercial-property-listings/commercial-property-listings.component.ts index 6312721..c961f08 100644 --- a/bizmatch/src/app/pages/listings/commercial-property-listings/commercial-property-listings.component.ts +++ b/bizmatch/src/app/pages/listings/commercial-property-listings/commercial-property-listings.component.ts @@ -84,8 +84,8 @@ export class CommercialPropertyListingsComponent implements OnInit, OnDestroy { // Set SEO meta tags for commercial property listings page this.seoService.updateMetaTags({ - title: 'Commercial Properties for Sale - Office, Retail | BizMatch', - description: 'Browse commercial real estate: office buildings, retail spaces, warehouses, and industrial properties. Verified investment opportunities.', + title: 'Commercial Properties for Sale | BizMatch', + description: 'Browse commercial real estate including offices, retail, warehouses, and industrial properties. Verified investment opportunities.', keywords: 'commercial property for sale, commercial real estate, office building for sale, retail space for sale, warehouse for sale, industrial property, investment property, commercial property listings', type: 'website' });