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",
|
||||
"NDI SRT production",
|
||||
"Washington DC broadcast engineer",
|
||||
"camera operator DMV",
|
||||
"Arri Trinity operator",
|
||||
"1st AC Washington DC",
|
||||
"RED camera operator",
|
||||
],
|
||||
authors: [{ name: "Zachary Gaetano" }],
|
||||
creator: "Zachary Gaetano",
|
||||
metadataBase: new URL("https://www.wilddragon.net"),
|
||||
alternates: {
|
||||
canonical: "https://www.wilddragon.net",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Zachary Gaetano | Broadcast Systems Integration",
|
||||
description:
|
||||
|
|
@ -49,35 +56,79 @@ export const metadata: Metadata = {
|
|||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
googleBot: {
|
||||
index: true,
|
||||
follow: true,
|
||||
"max-snippet": -1,
|
||||
"max-image-preview": "large",
|
||||
"max-video-preview": -1,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
const structuredData = {
|
||||
"@context": "https://schema.org",
|
||||
"@type": "ProfessionalService",
|
||||
name: "Wild Dragon - Zachary Gaetano",
|
||||
description:
|
||||
"Broadcast systems integration and production facility design for sports, corporate, financial services, and defense organizations.",
|
||||
url: "https://www.wilddragon.net",
|
||||
founder: {
|
||||
"@type": "Person",
|
||||
name: "Zachary Gaetano",
|
||||
jobTitle: "Principal Systems Designer",
|
||||
url: "https://www.linkedin.com/in/zachary-gaetano-05962386/",
|
||||
},
|
||||
areaServed: "United States",
|
||||
address: {
|
||||
"@type": "PostalAddress",
|
||||
addressRegion: "DC",
|
||||
addressCountry: "US",
|
||||
},
|
||||
knowsAbout: [
|
||||
"Broadcast Systems Integration",
|
||||
"Production Facility Design",
|
||||
"SMPTE ST 2110",
|
||||
"Cloud Production",
|
||||
"IP Broadcast Infrastructure",
|
||||
"Extended Reality Production",
|
||||
"@graph": [
|
||||
{
|
||||
"@type": "Person",
|
||||
"@id": "https://www.wilddragon.net/#person",
|
||||
name: "Zachary Gaetano",
|
||||
jobTitle: "Broadcast Systems Integrator & Camera Operator",
|
||||
url: "https://www.wilddragon.net",
|
||||
sameAs: [
|
||||
"https://www.linkedin.com/in/zachary-gaetano-05962386/",
|
||||
"https://vimeo.com/zachary_gaetano",
|
||||
],
|
||||
address: {
|
||||
"@type": "PostalAddress",
|
||||
addressRegion: "DC",
|
||||
addressCountry: "US",
|
||||
},
|
||||
knowsAbout: [
|
||||
"Broadcast Systems Integration",
|
||||
"Production Facility Design",
|
||||
"SMPTE ST 2110",
|
||||
"Cloud Production",
|
||||
"IP Broadcast Infrastructure",
|
||||
"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