seo: canonical url, enhanced @graph structured data (Person + VideoObject), expanded googleBot directives, camera operator keywords
This commit is contained in:
parent
b0f1272670
commit
014d6d8375
1 changed files with 75 additions and 24 deletions
|
|
@ -18,10 +18,17 @@ export const metadata: Metadata = {
|
||||||
"Ross Video integrator",
|
"Ross Video integrator",
|
||||||
"NDI SRT production",
|
"NDI SRT production",
|
||||||
"Washington DC broadcast engineer",
|
"Washington DC broadcast engineer",
|
||||||
|
"camera operator DMV",
|
||||||
|
"Arri Trinity operator",
|
||||||
|
"1st AC Washington DC",
|
||||||
|
"RED camera operator",
|
||||||
],
|
],
|
||||||
authors: [{ name: "Zachary Gaetano" }],
|
authors: [{ name: "Zachary Gaetano" }],
|
||||||
creator: "Zachary Gaetano",
|
creator: "Zachary Gaetano",
|
||||||
metadataBase: new URL("https://www.wilddragon.net"),
|
metadataBase: new URL("https://www.wilddragon.net"),
|
||||||
|
alternates: {
|
||||||
|
canonical: "https://www.wilddragon.net",
|
||||||
|
},
|
||||||
openGraph: {
|
openGraph: {
|
||||||
title: "Zachary Gaetano | Broadcast Systems Integration",
|
title: "Zachary Gaetano | Broadcast Systems Integration",
|
||||||
description:
|
description:
|
||||||
|
|
@ -49,35 +56,79 @@ export const metadata: Metadata = {
|
||||||
robots: {
|
robots: {
|
||||||
index: true,
|
index: true,
|
||||||
follow: true,
|
follow: true,
|
||||||
|
googleBot: {
|
||||||
|
index: true,
|
||||||
|
follow: true,
|
||||||
|
"max-snippet": -1,
|
||||||
|
"max-image-preview": "large",
|
||||||
|
"max-video-preview": -1,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const structuredData = {
|
const structuredData = {
|
||||||
"@context": "https://schema.org",
|
"@context": "https://schema.org",
|
||||||
"@type": "ProfessionalService",
|
"@graph": [
|
||||||
name: "Wild Dragon - Zachary Gaetano",
|
{
|
||||||
description:
|
"@type": "Person",
|
||||||
"Broadcast systems integration and production facility design for sports, corporate, financial services, and defense organizations.",
|
"@id": "https://www.wilddragon.net/#person",
|
||||||
url: "https://www.wilddragon.net",
|
name: "Zachary Gaetano",
|
||||||
founder: {
|
jobTitle: "Broadcast Systems Integrator & Camera Operator",
|
||||||
"@type": "Person",
|
url: "https://www.wilddragon.net",
|
||||||
name: "Zachary Gaetano",
|
sameAs: [
|
||||||
jobTitle: "Principal Systems Designer",
|
"https://www.linkedin.com/in/zachary-gaetano-05962386/",
|
||||||
url: "https://www.linkedin.com/in/zachary-gaetano-05962386/",
|
"https://vimeo.com/zachary_gaetano",
|
||||||
},
|
],
|
||||||
areaServed: "United States",
|
address: {
|
||||||
address: {
|
"@type": "PostalAddress",
|
||||||
"@type": "PostalAddress",
|
addressRegion: "DC",
|
||||||
addressRegion: "DC",
|
addressCountry: "US",
|
||||||
addressCountry: "US",
|
},
|
||||||
},
|
knowsAbout: [
|
||||||
knowsAbout: [
|
"Broadcast Systems Integration",
|
||||||
"Broadcast Systems Integration",
|
"Production Facility Design",
|
||||||
"Production Facility Design",
|
"SMPTE ST 2110",
|
||||||
"SMPTE ST 2110",
|
"Cloud Production",
|
||||||
"Cloud Production",
|
"IP Broadcast Infrastructure",
|
||||||
"IP Broadcast Infrastructure",
|
"Extended Reality Production",
|
||||||
"Extended Reality Production",
|
"Camera Operation",
|
||||||
|
"Arri Trinity",
|
||||||
|
"RED Cinema Cameras",
|
||||||
|
"1st AC",
|
||||||
|
"Director of Photography",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "ProfessionalService",
|
||||||
|
"@id": "https://www.wilddragon.net/#organization",
|
||||||
|
name: "Wild Dragon",
|
||||||
|
description:
|
||||||
|
"Broadcast systems integration and production facility design for sports, corporate, financial services, and defense organizations.",
|
||||||
|
url: "https://www.wilddragon.net",
|
||||||
|
founder: {
|
||||||
|
"@id": "https://www.wilddragon.net/#person",
|
||||||
|
},
|
||||||
|
areaServed: "United States",
|
||||||
|
address: {
|
||||||
|
"@type": "PostalAddress",
|
||||||
|
addressRegion: "DC",
|
||||||
|
addressCountry: "US",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "VideoObject",
|
||||||
|
"@id": "https://www.wilddragon.net/#showreel",
|
||||||
|
name: "Zachary Gaetano — Camera Operator & DP Showreel",
|
||||||
|
description:
|
||||||
|
"Showreel for Zachary Gaetano, camera operator and director of photography based in the Washington DC area. Featuring commercial, sports, documentary, and narrative work including RED Komodo-X and Arri Trinity.",
|
||||||
|
thumbnailUrl: "https://vumbnail.com/225920311.jpg",
|
||||||
|
embedUrl: "https://player.vimeo.com/video/225920311",
|
||||||
|
contentUrl: "https://vimeo.com/225920311",
|
||||||
|
uploadDate: "2017-01-01",
|
||||||
|
creator: {
|
||||||
|
"@id": "https://www.wilddragon.net/#person",
|
||||||
|
},
|
||||||
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue