From f25a07953dfd637e0b7ab727d0f93afbbd82ff41 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 09:39:45 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++------------------------------------ 1 file changed, 10 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e26cf7a..a91fa16 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,21 @@ -import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +import type { Metadata } from 'next'; +import './globals.css'; export const metadata: Metadata = { - title: "Envoq - AI Chatbot Platform for Customer Engagement", description: "Transform customer interactions with Envoq's advanced AI chatbot. Natural conversations, real-time analytics, enterprise security. Start your free trial today.", keywords: "AI chatbot, conversational AI, customer support automation, NLP, machine learning, Envoq", metadataBase: new URL("https://envoq.ai"), - openGraph: { - title: "Envoq - AI Chatbot Platform", description: "Next-generation conversational AI for modern businesses. Intelligent, scalable, secure.", url: "https://envoq.ai", siteName: "Envoq", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWKKdNYK9qdeW5L8SGOQyIh9VN/a-futuristic-ai-chatbot-dashboard-interf-1772703054960-8e2e2dcd.png", alt: "Envoq AI Chatbot Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Envoq - AI Chatbot Platform", description: "Transform customer interactions with advanced conversational AI", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWKKdNYK9qdeW5L8SGOQyIh9VN/a-futuristic-ai-chatbot-dashboard-interf-1772703054960-8e2e2dcd.png"], - }, - robots: { - index: true, - follow: true, - }, + title: 'Envoq - AI Chatbot Platform', + description: 'The future of conversational AI for your business', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +