From 014d6d83758f04f5cd817de13552816418d8aa77 Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Thu, 30 Apr 2026 21:52:24 -0400 Subject: [PATCH] seo: canonical url, enhanced @graph structured data (Person + VideoObject), expanded googleBot directives, camera operator keywords --- src/app/layout.tsx | 99 +++++++++++++++++++++++++++++++++++----------- 1 file changed, 75 insertions(+), 24 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index acb1064..6737080 100755 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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", + }, + }, ], };