- Created complete Next.js 15 teaser website with CHORUS brand styling - Implemented mobile-responsive 3D logo (128px mobile, 512px desktop) - Added proper Exo font loading via Next.js Google Fonts for iOS/Chrome compatibility - Built comprehensive early access form with GDPR compliance and rate limiting - Integrated PostgreSQL database with complete schema for lead capture - Added scroll indicators that auto-hide when scrolling begins - Optimized mobile modal forms with proper scrolling and submit button access - Deployed via Docker Swarm with Traefik SSL termination at chorus.services - Includes database migrations, consent tracking, and email notifications 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
79 lines
2.2 KiB
TypeScript
79 lines
2.2 KiB
TypeScript
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 (
|
|
<html lang="en" className="dark">
|
|
<body className={`${inter.variable} ${exo.variable} font-sans`}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
} |