diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fdaf8f4..0d7bc8d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,17 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "AI Chatbot Blog | Insights & Innovations", description: "Discover cutting-edge insights on conversational AI, chatbot innovations, and intelligent automation. Real-time analytics and best practices.", keywords: "AI chatbot, conversational AI, NLP, automation, chatbot development, machine learning, customer engagement", metadataBase: new URL("https://aichatbotblog.com"), - alternates: { - canonical: "https://aichatbotblog.com" - }, - openGraph: { - title: "AI Chatbot Blog | Insights & Innovations", description: "Explore the future of conversational AI with expert insights and real-time conversation analytics.", url: "https://aichatbotblog.com", siteName: "AI Chatbot Blog", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATQM3buSugeiWi9dFW7wX4tZIR/a-sleek-modern-ai-chatbot-interface-disp-1772614120358-4d7f1521.png", alt: "AI Chatbot Interface" - } - ] - }, - twitter: { - card: "summary_large_image", title: "AI Chatbot Blog | Insights & Innovations", description: "Discover cutting-edge insights on conversational AI and chatbot innovations.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATQM3buSugeiWi9dFW7wX4tZIR/a-sleek-modern-ai-chatbot-interface-disp-1772614120358-4d7f1521.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "AI Chatbot Blog", description: "Discover cutting-edge insights on conversational AI"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}