import type { Metadata } from "next"; import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Cerebral AI - Advanced AI Platform for Intelligent Automation", description: "Transform your business with cutting-edge AI technology. Real-time analytics, predictive insights, and seamless automation to drive growth and efficiency.", keywords: "AI platform, artificial intelligence, machine learning, automation, predictive analytics, enterprise AI, learning platform", metadataBase: new URL("https://cerebral-ai.example.com"), alternates: { canonical: "https://cerebral-ai.example.com" }, openGraph: { title: "Cerebral AI - Intelligent Automation Platform", description: "Harness the power of AI for your business. 99.9% uptime, enterprise security, and proven ROI.", url: "https://cerebral-ai.example.com", siteName: "Cerebral AI", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbhnzuxBVuw8xO8x8cFB6e4bqu/a-sleek-modern-ai-dashboard-interface-wi-1772867453145-71bf78fc.png", alt: "Cerebral AI Platform Dashboard" } ] }, twitter: { card: "summary_large_image", title: "Cerebral AI - Intelligent Automation", description: "Transform your business with advanced AI technology and predictive insights.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbhnzuxBVuw8xO8x8cFB6e4bqu/a-sleek-modern-ai-dashboard-interface-wi-1772867453145-71bf78fc.png"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}