diff --git a/app/layout.tsx b/app/layout.tsx index e5f79926..d937c6b1 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -3,6 +3,7 @@ import { GeistSans } from "geist/font/sans"; import type { ReactNode } from "react"; import type { Metadata } from 'next'; import { validateEnv } from "@/lib/env"; +import Script from 'next/script'; import "./global.css"; // Validate environment variables at startup (server-side only) @@ -12,18 +13,32 @@ if (typeof window === 'undefined') { export const metadata: Metadata = { metadataBase: new URL('https://www.agentuity.dev'), - title: 'Agentuity Docs', + title: 'Agentuity Documentation — Complete guide to AI agent deployment', description: - 'Documentation for Agentuity, the cloud platform purpose-built for deploying, managing, and scaling AI agents.', + 'Comprehensive documentation for Agentuity, the cloud platform purpose-built for deploying, managing, and scaling AI agents. Learn how to build, deploy, and manage autonomous agents with our CLI, SDKs, and cloud infrastructure.', applicationName: 'Agentuity Docs', authors: [{ name: 'Agentuity, Inc.' }], keywords: [ - 'AI', - 'Agents', - 'Cloud Platform', - 'Deployment', - 'Management', - 'Scaling', + 'AI agents documentation', + 'artificial intelligence', + 'cloud platform', + 'agent deployment guide', + 'AI infrastructure', + 'autonomous agents', + 'LangChain integration', + 'CrewAI integration', + 'agent management', + 'AI scaling', + 'machine learning operations', + 'MLOps', + 'agent orchestration', + 'AI automation', + 'intelligent agents', + 'API documentation', + 'SDK documentation', + 'CLI documentation', + 'tutorials', + 'examples', ], referrer: 'origin-when-cross-origin', creator: 'Agentuity, Inc.', @@ -49,9 +64,9 @@ export const metadata: Metadata = { }, manifest: '/manifest.json', openGraph: { - title: 'Agentuity Docs', + title: 'Agentuity Documentation — Complete guide to AI agent deployment', description: - 'Documentation for Agentuity, the cloud platform purpose-built for deploying, managing, and scaling AI agents.', + 'Comprehensive documentation for Agentuity, the cloud platform purpose-built for deploying, managing, and scaling AI agents. Learn how to build, deploy, and manage autonomous agents.', url: 'https://www.agentuity.dev', siteName: 'Agentuity Docs', images: [ @@ -59,7 +74,7 @@ export const metadata: Metadata = { url: '/og-image.png', width: 1200, height: 630, - alt: 'Agentuity Docs', + alt: 'Agentuity Documentation - Complete guide to AI agent deployment and management', }, ], locale: 'en_US', @@ -69,9 +84,9 @@ export const metadata: Metadata = { card: 'summary_large_image', site: '@agentuity', creator: '@agentuity', - title: 'Agentuity Docs', + title: 'Agentuity Documentation — Complete guide to AI agent deployment', description: - 'Documentation for Agentuity, the cloud platform purpose-built for deploying, managing, and scaling AI agents.', + 'Comprehensive documentation for Agentuity, the cloud platform purpose-built for deploying, managing, and scaling AI agents. Learn how to build, deploy, and manage autonomous agents.', images: ['/og-image.png'], }, appleWebApp: { @@ -79,7 +94,7 @@ export const metadata: Metadata = { title: 'Agentuity Docs', statusBarStyle: 'black-translucent', }, - abstract: 'Documentation for Agentuity, the cloud platform purpose-built for deploying, managing, and scaling AI agents.', + abstract: 'Comprehensive technical documentation for Agentuity\'s AI agent cloud platform, including API references, SDK guides, CLI documentation, tutorials, and examples for building and deploying autonomous agents', category: 'technology', classification: 'Business Software', }; @@ -87,6 +102,132 @@ export const metadata: Metadata = { export default function Layout({ children }: { children: ReactNode }) { return ( +
+ + + +