import type { Metadata } from "next"; import { Inter } from "next/font/google"; import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "CRM AI Platform - Intelligent Customer Management", description: "Revolutionize your CRM with AI. Automate tasks, gain deep customer insights, and drive growth with our cutting-edge AI CRM platform.", keywords: ["AI CRM", "CRM management", "artificial intelligence", "customer relationship management", "sales automation", "marketing AI", "customer insights", "business growth"], openGraph: { title: "CRM AI Platform - Intelligent Customer Management", description: "Revolutionize your CRM with AI. Automate tasks, gain deep customer insights, and drive growth with our cutting-edge AI CRM platform.", url: "https://crm-ai.com", siteName: "CRM AI", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771630687370-xxt7k3kx.png", alt: "AI CRM Platform Dashboard"} ], type: "website"}, twitter: { card: "summary_large_image", title: "CRM AI Platform - Intelligent Customer Management", description: "Revolutionize your CRM with AI. Automate tasks, gain deep customer insights, and drive growth with our cutting-edge AI CRM platform.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771630687370-xxt7k3kx.png"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}