Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-04 08:59:57 +00:00
2 changed files with 6 additions and 49 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -39,7 +39,7 @@ export default function LandingPage() {
contentWidth="mediumLarge"
sizing="large"
background="grid"
cardStyle="layered-gradient"
cardStyle="glass-elevated"
primaryButtonStyle="flat"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"