112 lines
3.5 KiB
TypeScript
Executable file
112 lines
3.5 KiB
TypeScript
Executable file
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
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",
|
|
],
|
|
authors: [{ name: "Zachary Gaetano" }],
|
|
creator: "Zachary Gaetano",
|
|
metadataBase: new URL("https://www.wilddragon.net"),
|
|
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,
|
|
},
|
|
};
|
|
|
|
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",
|
|
],
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link
|
|
rel="preconnect"
|
|
href="https://fonts.gstatic.com"
|
|
crossOrigin="anonymous"
|
|
/>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link rel="icon" href="/images/dragon-mark.png" type="image/png" />
|
|
<link rel="apple-touch-icon" href="/images/dragon-mark.png" />
|
|
<script
|
|
type="application/ld+json"
|
|
dangerouslySetInnerHTML={{ __html: JSON.stringify(structuredData) }}
|
|
/>
|
|
</head>
|
|
<body className="bg-surface text-primary antialiased">{children}</body>
|
|
</html>
|
|
);
|
|
}
|