Files
bizmatch-project/bizmatch/src/index.html
2026-02-06 12:59:47 +01:00

108 lines
5.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Bizmatch - Find Business for sale</title>
<meta name="description" content="Find or Sell Businesses and Restaurants" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Mobile App & Theme Meta Tags -->
<meta name="theme-color" content="#0066cc" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="BizMatch" />
<meta name="application-name" content="BizMatch" />
<meta name="msapplication-TileColor" content="#0066cc" />
<!-- Resource Hints for Performance -->
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
<link rel="dns-prefetch" href="https://fonts.gstatic.com" />
<!-- Image CDN -->
<link rel="preconnect" href="https://dev.bizmatch.net" crossorigin />
<link rel="dns-prefetch" href="https://dev.bizmatch.net" />
<!-- Firebase Services -->
<link rel="preconnect" href="https://firebase.google.com" />
<link rel="preconnect" href="https://firebasestorage.googleapis.com" />
<link rel="dns-prefetch" href="https://firebasestorage.googleapis.com" />
<link rel="dns-prefetch" href="https://firebaseapp.com" />
<!-- Preload critical assets -->
<link rel="preload" as="image" href="/assets/images/header-logo.png" type="image/png" />
<!-- Hero background is LCP element - preload with high priority -->
<link rel="preload" as="image" href="/assets/images/flags_bg.avif" type="image/avif" fetchpriority="high" />
<link rel="preload" as="image" href="/assets/images/flags_bg.jpg" imagesrcset="/assets/images/flags_bg.jpg" type="image/jpeg" />
<!-- Prefetch common assets -->
<link rel="prefetch" as="image" href="/assets/images/business_logo.png" />
<link rel="prefetch" as="image" href="/assets/images/properties_logo.png" />
<link rel="prefetch" as="image" href="/assets/images/placeholder.png" />
<link rel="prefetch" as="image" href="/assets/images/person_placeholder.jpg" />
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<meta name="bingbot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="front-page - BizMatch" />
<meta property="og:description"
content="We are dedicated to providing a simple to use way for people in business to get in contact with each other." />
<meta property="og:site_name" content="BizMatch" />
<meta property="article:modified_time" content="2016-11-17T15:57:10+00:00" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<base href="/" />
<link rel="icon" href="/assets/cropped-Favicon-32x32.png" sizes="32x32" />
<link rel="icon" href="/assets/cropped-Favicon-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="/assets/cropped-Favicon-180x180.png" />
<!-- Schema.org Structured Data -->
<!-- Note: Organization and WebSite schemas are now injected dynamically by SeoService -->
<!-- with more complete data (telephone, foundingDate, knowsAbout, dual search actions) -->
<!-- LocalBusiness Schema for local visibility -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"@id": "https://www.bizmatch.net/#localbusiness",
"name": "BizMatch",
"description": "Business brokerage and commercial real estate marketplace connecting buyers and sellers across the United States.",
"url": "https://www.bizmatch.net",
"logo": "https://www.bizmatch.net/assets/images/bizmatch-logo.png",
"image": "https://www.bizmatch.net/assets/images/bizmatch-logo.png",
"priceRange": "$$",
"address": {
"@type": "PostalAddress",
"streetAddress": "1001 Blucher Street",
"addressLocality": "Corpus Christi",
"addressRegion": "TX",
"postalCode": "78401",
"addressCountry": "US"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "27.7876",
"longitude": "-97.3940"
},
"areaServed": {
"@type": "Country",
"name": "United States"
},
"serviceType": ["Business Brokerage", "Commercial Real Estate", "Business For Sale Listings"],
"knowsAbout": ["Business Sales", "Commercial Properties", "Franchise Opportunities", "Business Valuation"]
}
</script>
</head>
<body class="flex flex-col min-h-screen">
<app-root></app-root>
</body>
</html>