fix: seo fb
This commit is contained in:
parent
a293d0fa9a
commit
a79f42123a
|
|
@ -7,6 +7,7 @@
|
|||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
||||
<link rel="manifest" href="/site.webmanifest" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="theme-color" content="#0B1B3F" />
|
||||
<title>Queue North Technologies | Business Communications & IT Partner</title>
|
||||
<meta name="description" content="Queue North Technologies is a veteran-owned 8x8 Certified Partner providing business phone systems, UCaaS, contact center, IT support, and networking solutions. 25+ years of proven reliability." />
|
||||
<!-- Open Graph fallback for crawlers that don't execute JavaScript -->
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "Queue North Technologies",
|
||||
"short_name": "Queue North",
|
||||
"description": "IT solutions and managed services provider",
|
||||
"description": "Veteran-owned 8x8 Certified Partner — business phone, UCaaS, contact center, IT support, and networking solutions.",
|
||||
"start_url": "/",
|
||||
"display": "standalone",
|
||||
"background_color": "#ffffff",
|
||||
|
|
|
|||
|
|
@ -19,24 +19,43 @@ const Home = () => {
|
|||
'@type': 'Organization',
|
||||
name: 'Queue North Technologies',
|
||||
url: 'https://queuenorth.com',
|
||||
logo: 'https://queuenorth.com/assets/og-image.png',
|
||||
description: 'Business communications and IT partner. 8x8 Certified Partner, Veteran Owned, 25+ years of service.',
|
||||
logo: {
|
||||
'@type': 'ImageObject',
|
||||
url: 'https://queuenorth.com/logo.png',
|
||||
},
|
||||
description: 'Veteran-owned 8x8 Certified Partner providing business phone systems, UCaaS, contact center, IT support, and networking solutions.',
|
||||
address: {
|
||||
'@type': 'PostalAddress',
|
||||
streetAddress: '7901 4th St N',
|
||||
addressLocality: 'St. Petersburg',
|
||||
addressRegion: 'FL',
|
||||
postalCode: '33702',
|
||||
addressCountry: 'US',
|
||||
},
|
||||
contactPoint: {
|
||||
contactPoint: [
|
||||
{
|
||||
'@type': 'ContactPoint',
|
||||
telephone: '+1-321-730-8020',
|
||||
contactType: 'customer service',
|
||||
areaServed: 'US',
|
||||
},
|
||||
sameAs: [],
|
||||
{
|
||||
'@type': 'ContactPoint',
|
||||
telephone: '+1-888-656-2850',
|
||||
contactType: 'customer service',
|
||||
contactOption: 'TollFree',
|
||||
areaServed: 'US',
|
||||
},
|
||||
],
|
||||
sameAs: [
|
||||
'https://www.linkedin.com/company/queue-north-technologies-llc',
|
||||
'https://www.facebook.com/QueueNorth',
|
||||
],
|
||||
}
|
||||
|
||||
const localBusinessLd = {
|
||||
'@context': 'https://schema.org',
|
||||
'@type': 'LocalBusiness',
|
||||
'@type': 'ProfessionalService',
|
||||
'@id': 'https://queuenorth.com/#business',
|
||||
name: 'Queue North Technologies',
|
||||
image: 'https://queuenorth.com/assets/og-image.png',
|
||||
|
|
@ -44,8 +63,17 @@ const Home = () => {
|
|||
telephone: '+1-321-730-8020',
|
||||
address: {
|
||||
'@type': 'PostalAddress',
|
||||
streetAddress: '7901 4th St N',
|
||||
addressLocality: 'St. Petersburg',
|
||||
addressRegion: 'FL',
|
||||
postalCode: '33702',
|
||||
addressCountry: 'US',
|
||||
},
|
||||
geo: {
|
||||
'@type': 'GeoCoordinates',
|
||||
latitude: 27.8306,
|
||||
longitude: -82.6765,
|
||||
},
|
||||
priceRange: '$$',
|
||||
openingHoursSpecification: {
|
||||
'@type': 'OpeningHoursSpecification',
|
||||
|
|
@ -53,6 +81,10 @@ const Home = () => {
|
|||
opens: '08:00',
|
||||
closes: '18:00',
|
||||
},
|
||||
sameAs: [
|
||||
'https://www.linkedin.com/company/queue-north-technologies-llc',
|
||||
'https://www.facebook.com/QueueNorth',
|
||||
],
|
||||
}
|
||||
|
||||
return (
|
||||
|
|
|
|||
Loading…
Reference in New Issue