diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e45cf8a..c6425b1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Outfit } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const outfit = Outfit({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Full-Stack AI Chatbot with MERN - Build & Deploy", description: "Complete MERN stack AI chatbot application with React UI, Express API, Node.js backend, MongoDB storage, JWT auth, and OpenAI/Gemini integration. Production-ready code.", keywords: "MERN stack, AI chatbot, chatbot application, Express API, React chat, Node.js, MongoDB, JWT authentication, OpenAI integration, full-stack development", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Build Full-Stack AI Chatbot with MERN", description: "Complete guide to building production-ready AI chatbot with MongoDB, Express, React, Node.js, JWT auth, and real-time messaging", type: "website", siteName: "ChatAI", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhOGd3gitnurOfU5lOsyXetXm6/a-modern-sleek-ai-chatbot-web-interface--1773041416109-cf38a46b.png", alt: "AI Chatbot Web Interface"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Full-Stack AI Chatbot with MERN", description: "Build intelligent chatbot applications with MERN stack, real-time messaging, and AI integration", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhOGd3gitnurOfU5lOsyXetXm6/a-modern-sleek-ai-chatbot-web-interface--1773041416109-cf38a46b.png"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -