2026-04-17 15:51:01 -04:00
import type { Metadata } from "next" ;
2026-05-01 11:14:00 -04:00
import { Inter , JetBrains_Mono } from "next/font/google" ;
2026-04-17 15:51:01 -04:00
import "./globals.css" ;
2026-05-01 11:14:00 -04:00
const inter = Inter ( {
subsets : [ "latin" ] ,
variable : "--font-inter" ,
display : "swap" ,
} ) ;
const jetbrainsMono = JetBrains_Mono ( {
subsets : [ "latin" ] ,
variable : "--font-jetbrains-mono" ,
display : "swap" ,
weight : [ "400" , "500" ] ,
} ) ;
2026-04-17 15:51:01 -04:00
export const metadata : Metadata = {
title : "Zachary Gaetano | Broadcast Systems Integration & Production Facility Design" ,
description :
"Systems designer and broadcast engineer specializing in production facility design, IP infrastructure, and cloud-based broadcast solutions. Principal projects include Washington Commanders, BetMGM, CVS/Aetna, UBS, Monumental Sports, COSM, and Intuit." ,
keywords : [
"broadcast systems integration" ,
"systems design" ,
"broadcast engineering" ,
"SMPTE ST 2110" ,
"production facility design" ,
"IP broadcast" ,
"cloud production" ,
"XR virtual production" ,
"broadcast control room design" ,
"Ross Video integrator" ,
"NDI SRT production" ,
"Washington DC broadcast engineer" ,
2026-04-30 21:52:24 -04:00
"camera operator DMV" ,
"Arri Trinity operator" ,
"1st AC Washington DC" ,
"RED camera operator" ,
2026-04-17 15:51:01 -04:00
] ,
authors : [ { name : "Zachary Gaetano" } ] ,
creator : "Zachary Gaetano" ,
metadataBase : new URL ( "https://www.wilddragon.net" ) ,
2026-04-30 21:52:24 -04:00
alternates : {
canonical : "https://www.wilddragon.net" ,
} ,
2026-04-17 15:51:01 -04:00
openGraph : {
title : "Zachary Gaetano | Broadcast Systems Integration" ,
description :
"Systems designer specializing in broadcast facility design, IP infrastructure, and cloud production for enterprise, sports, and financial organizations." ,
url : "https://www.wilddragon.net" ,
siteName : "Wild Dragon" ,
type : "website" ,
locale : "en_US" ,
images : [
{
url : "/images/wild-dragon-logo.jpg" ,
width : 1200 ,
height : 630 ,
alt : "Wild Dragon - Broadcast Systems Integration" ,
} ,
] ,
} ,
twitter : {
card : "summary_large_image" ,
title : "Zachary Gaetano | Broadcast Systems Integration" ,
description :
"Systems designer specializing in broadcast facility design, IP infrastructure, and cloud production." ,
images : [ "/images/wild-dragon-logo.jpg" ] ,
} ,
robots : {
index : true ,
follow : true ,
2026-04-30 21:52:24 -04:00
googleBot : {
index : true ,
follow : true ,
"max-snippet" : - 1 ,
"max-image-preview" : "large" ,
"max-video-preview" : - 1 ,
} ,
2026-04-17 15:51:01 -04:00
} ,
} ;
const structuredData = {
"@context" : "https://schema.org" ,
2026-04-30 21:52:24 -04:00
"@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" ,
} ,
2026-05-01 14:21:04 -04:00
contactPoint : {
"@type" : "ContactPoint" ,
email : "zgaetano@wilddragon.net" ,
contactType : "sales" ,
areaServed : "US" ,
availableLanguage : "English" ,
} ,
2026-04-30 21:52:24 -04:00
} ,
{
"@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" ,
} ,
} ,
2026-04-17 15:51:01 -04:00
] ,
} ;
export default function RootLayout ( {
children ,
} : Readonly < {
children : React.ReactNode ;
} > ) {
return (
2026-05-01 11:14:00 -04:00
< html lang = "en" className = { ` ${ inter . variable } ${ jetbrainsMono . variable } ` } >
2026-04-17 15:51:01 -04:00
< head >
2026-05-01 14:21:04 -04:00
< meta name = "theme-color" content = "#0a0a0a" / >
2026-04-17 15:51:01 -04:00
< link rel = "icon" href = "/images/dragon-mark.png" type = "image/png" / >
< link rel = "apple-touch-icon" href = "/images/dragon-mark.png" / >
2026-05-01 14:21:04 -04:00
< link rel = "preconnect" href = "https://player.vimeo.com" / >
< link rel = "dns-prefetch" href = "//vimeo.com" / >
2026-04-17 15:51:01 -04:00
< script
type = "application/ld+json"
dangerouslySetInnerHTML = { { __html : JSON.stringify ( structuredData ) } }
/ >
< / head >
< body className = "bg-white text-primary antialiased" > { children } < / body >
< / html >
) ;
}