import type { Metadata } from 'next' import { Inter, Exo } from 'next/font/google' import './globals.css' const inter = Inter({ subsets: ['latin'], variable: '--font-inter', display: 'swap', }) const exo = Exo({ subsets: ['latin'], variable: '--font-exo', display: 'swap', weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'], }) export const metadata: Metadata = { title: 'CHORUS Services - Contextual AI Orchestration Platform', description: 'Revolutionary AI orchestration platform. The right context, to the right agent, at the right time. Join the waitlist for early access.', keywords: ['contextual AI', 'agent orchestration', 'enterprise AI', 'knowledge fabric', 'AI platform'], authors: [{ name: 'Anthony Lewis Rawlins', url: 'https://deepblack.cloud' }], creator: 'Deep Black Cloud', publisher: 'CHORUS Services', metadataBase: new URL('https://chorus.services'), alternates: { canonical: 'https://chorus.services', }, openGraph: { type: 'website', locale: 'en_US', url: 'https://chorus.services', siteName: 'CHORUS Services', title: 'CHORUS Services - Contextual AI Orchestration Platform', description: 'Revolutionary AI orchestration platform. The right context, to the right agent, at the right time.', images: [ { url: '/logos/logo-ring-only.png', width: 256, height: 256, alt: 'CHORUS Services Logo', }, ], }, twitter: { card: 'summary_large_image', title: 'CHORUS Services - Contextual AI Orchestration', description: 'The right context, to the right agent, at the right time.', images: ['/logos/chorus-landscape-on-blue.png'], }, robots: { index: true, follow: true, googleBot: { index: true, follow: true, 'max-video-preview': -1, 'max-image-preview': 'large', 'max-snippet': -1, }, }, verification: { // Add Google Search Console verification when available }, } export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ) }